diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-06-30 11:46:43 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-06-30 11:46:43 +0200 |
commit | 90889ac38dee7b3ad3c9b6c8b3e5aeb66e8b5846 (patch) | |
tree | b8cbfc1c43f23c7f1fa1367bcbeaeedbbbe18ef0 /src/compiler.rs | |
parent | 70ed10c131883553582a6dfce7f07eba6c1387fc (diff) | |
download | markdown-rs-90889ac38dee7b3ad3c9b6c8b3e5aeb66e8b5846.tar.gz markdown-rs-90889ac38dee7b3ad3c9b6c8b3e5aeb66e8b5846.tar.bz2 markdown-rs-90889ac38dee7b3ad3c9b6c8b3e5aeb66e8b5846.zip |
Refactor some docs, fix some grammar
Diffstat (limited to '')
-rw-r--r-- | src/compiler.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/compiler.rs b/src/compiler.rs index b29a27c..7a11870 100644 --- a/src/compiler.rs +++ b/src/compiler.rs @@ -248,8 +248,6 @@ struct CompileContext<'a> { pub protocol_src: Option<Vec<&'static str>>, pub line_ending_default: LineEnding, pub allow_dangerous_html: bool, - /// Data inferred about the document. - // To do: definitions. /// Intermediate results. pub buffers: Vec<Vec<String>>, pub index: usize, |