aboutsummaryrefslogtreecommitdiffstats
path: root/src/construct/gfm_footnote_definition.rs
diff options
context:
space:
mode:
authorLibravatar Titus Wormer <tituswormer@gmail.com>2022-10-12 10:44:33 +0200
committerLibravatar Titus Wormer <tituswormer@gmail.com>2022-10-12 10:44:33 +0200
commite0485409fca79af0b47af15ebdba7a3df5c1d3d2 (patch)
tree1bc44cf3c11df4e99f555e4efe64facfe786c4c0 /src/construct/gfm_footnote_definition.rs
parent4d6bd4779c082fef900b760e014959a30b16051b (diff)
downloadmarkdown-rs-e0485409fca79af0b47af15ebdba7a3df5c1d3d2.tar.gz
markdown-rs-e0485409fca79af0b47af15ebdba7a3df5c1d3d2.tar.bz2
markdown-rs-e0485409fca79af0b47af15ebdba7a3df5c1d3d2.zip
Refactor to improve some module docs
Diffstat (limited to 'src/construct/gfm_footnote_definition.rs')
-rw-r--r--src/construct/gfm_footnote_definition.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/construct/gfm_footnote_definition.rs b/src/construct/gfm_footnote_definition.rs
index d3f72d7..99758f9 100644
--- a/src/construct/gfm_footnote_definition.rs
+++ b/src/construct/gfm_footnote_definition.rs
@@ -7,7 +7,7 @@
//!
//! ```bnf
//! ; Restriction: `label` must start with `^` (and not be empty after it).
-//! ; See the `label` construct for the BNF of that parts.
+//! ; See the `label` construct for the BNF of that part.
//! gfm_footnote_definition_start ::= label ':' *space_or_tab
//!
//! ; Restriction: blank line allowed.
@@ -17,7 +17,7 @@
//! Further lines that are not prefixed with `gfm_footnote_definition_cont`
//! cause the footnote definition to be exited, except when those lines are
//! lazy continuation or blank.
-//! Like so many things in markdown, footnote definition too, are complex.
+//! Like so many things in markdown, footnote definition too are complex.
//! See [*ยง Phase 1: block structure* in `CommonMark`][commonmark_block] for
//! more on parsing details.
//!