aboutsummaryrefslogtreecommitdiffstats
path: root/src/construct/gfm_footnote_definition.rs
diff options
context:
space:
mode:
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.
//!