aboutsummaryrefslogtreecommitdiffstats
path: root/src/tokenizer.rs
diff options
context:
space:
mode:
authorLibravatar Titus Wormer <tituswormer@gmail.com>2022-07-15 15:46:23 +0200
committerLibravatar Titus Wormer <tituswormer@gmail.com>2022-07-15 15:46:23 +0200
commitb7ec5d868bf9d4688fb16dd73f8fe05b3426b86c (patch)
tree2388c44d0287007197985f564ec9df7506230367 /src/tokenizer.rs
parent337d3b3d8fca29ff90cf79c18690e14fb7a17ae2 (diff)
downloadmarkdown-rs-b7ec5d868bf9d4688fb16dd73f8fe05b3426b86c.tar.gz
markdown-rs-b7ec5d868bf9d4688fb16dd73f8fe05b3426b86c.tar.bz2
markdown-rs-b7ec5d868bf9d4688fb16dd73f8fe05b3426b86c.zip
Add docs and refactor list
Diffstat (limited to 'src/tokenizer.rs')
-rw-r--r--src/tokenizer.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tokenizer.rs b/src/tokenizer.rs
index 17622e7..10c877f 100644
--- a/src/tokenizer.rs
+++ b/src/tokenizer.rs
@@ -145,7 +145,7 @@ pub enum Container {
pub struct ContainerState {
/// Kind.
pub kind: Container,
- /// Whether the first (and all future) lines were blank.
+ /// Whether the first line was blank.
pub blank_initial: bool,
/// The size of the initial construct.
pub size: usize,