diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-10-12 10:44:33 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-10-12 10:44:33 +0200 |
commit | e0485409fca79af0b47af15ebdba7a3df5c1d3d2 (patch) | |
tree | 1bc44cf3c11df4e99f555e4efe64facfe786c4c0 /src/construct/blank_line.rs | |
parent | 4d6bd4779c082fef900b760e014959a30b16051b (diff) | |
download | markdown-rs-e0485409fca79af0b47af15ebdba7a3df5c1d3d2.tar.gz markdown-rs-e0485409fca79af0b47af15ebdba7a3df5c1d3d2.tar.bz2 markdown-rs-e0485409fca79af0b47af15ebdba7a3df5c1d3d2.zip |
Refactor to improve some module docs
Diffstat (limited to 'src/construct/blank_line.rs')
-rw-r--r-- | src/construct/blank_line.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/construct/blank_line.rs b/src/construct/blank_line.rs index 5be406d..475883d 100644 --- a/src/construct/blank_line.rs +++ b/src/construct/blank_line.rs @@ -13,7 +13,7 @@ //! followed by an eol (line ending) or eof (end of file). //! //! Blank lines are sometimes needed, such as to differentiate a [paragraph][] -//! from another paragraph. +//! from a definition. //! In several cases, blank lines are not needed between flow constructs, //! such as between two [heading (atx)][heading_atx]s. //! Sometimes, whether blank lines are present, changes the behavior of how @@ -26,8 +26,8 @@ //! //! ## HTML //! -//! Blank lines do not relate an element in HTML, except for the role they play -//! when inside or between [list items][list_item]. +//! Blank lines do not relate to an element in HTML, except for the role they +//! play when inside or between [list items][list_item]. //! //! ## Recommendation //! |