aboutsummaryrefslogtreecommitdiffstats
path: root/src/construct/blank_line.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/construct/blank_line.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/construct/blank_line.rs b/src/construct/blank_line.rs
index f397a48..c4eacf5 100644
--- a/src/construct/blank_line.rs
+++ b/src/construct/blank_line.rs
@@ -40,9 +40,9 @@ use crate::tokenizer::{State, Tokenizer};
/// > 👉 **Note**: `␠` represents a space character.
///
/// ```markdown
-/// > | ␠␠
+/// > | ␠␠␊
/// ^
-/// > |
+/// > | ␊
/// ^
/// ```
pub fn start(tokenizer: &mut Tokenizer) -> State {
@@ -52,9 +52,9 @@ pub fn start(tokenizer: &mut Tokenizer) -> State {
/// After zero or more spaces or tabs, before a line ending or EOF.
///
/// ```markdown
-/// > | ␠␠
+/// > | ␠␠␊
/// ^
-/// > |
+/// > | ␊
/// ^
/// ```
fn after(tokenizer: &mut Tokenizer) -> State {