summaryrefslogtreecommitdiff
path: root/src/syntax/tokens.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2020-09-01 13:13:54 +0200
committerLaurenz <laurmaedje@gmail.com>2020-09-01 13:13:54 +0200
commit56acc9982c4a0e325929360f23d64c2cece07542 (patch)
tree1bb1ed3ae8c15ddc67c0b8a867a43d4ffa773978 /src/syntax/tokens.rs
parentd986bc4b0a35957c3f5cece82497c69e957f5c79 (diff)
Formatting 🌿
Diffstat (limited to 'src/syntax/tokens.rs')
-rw-r--r--src/syntax/tokens.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax/tokens.rs b/src/syntax/tokens.rs
index f6ae834e..23bad7c8 100644
--- a/src/syntax/tokens.rs
+++ b/src/syntax/tokens.rs
@@ -269,7 +269,7 @@ impl<'s> Iterator for Tokens<'s> {
'`' if self.mode == Body => self.read_raw_or_code(),
// Sections.
- '#' if self.mode == Body => Hashtag,
+ '#' if self.mode == Body => Hashtag,
// Non-breaking spaces.
'~' if self.mode == Body => Text("\u{00A0}"),