From b7ec5d868bf9d4688fb16dd73f8fe05b3426b86c Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Fri, 15 Jul 2022 15:46:23 +0200 Subject: Add docs and refactor list --- src/tokenizer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tokenizer.rs') 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, -- cgit