summaryrefslogtreecommitdiff
path: root/src/syntax
diff options
context:
space:
mode:
Diffstat (limited to 'src/syntax')
-rw-r--r--src/syntax/parsing.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax/parsing.rs b/src/syntax/parsing.rs
index ece09a86..a0d9c4e4 100644
--- a/src/syntax/parsing.rs
+++ b/src/syntax/parsing.rs
@@ -30,7 +30,7 @@ pub fn parse(src: &str, offset: Position, state: &ParseState) -> Pass<SyntaxMode
let span = token.span;
let node = match token.v {
// Starting from two newlines counts as a paragraph break, a single
- // newline not.
+ // newline does not.
Token::Space(newlines) => if newlines >= 2 {
Node::Parbreak
} else {