From e0485409fca79af0b47af15ebdba7a3df5c1d3d2 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Wed, 12 Oct 2022 10:44:33 +0200 Subject: Refactor to improve some module docs --- src/construct/gfm_footnote_definition.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/construct/gfm_footnote_definition.rs') 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. //! -- cgit