aboutsummaryrefslogtreecommitdiffstats
path: root/src/construct/html_text.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/html_text.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 '')
-rw-r--r--src/construct/html_text.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/construct/html_text.rs b/src/construct/html_text.rs
index d40361d..7812da6 100644
--- a/src/construct/html_text.rs
+++ b/src/construct/html_text.rs
@@ -23,7 +23,7 @@
//! attribute_value ::= '"' *(byte - '"') '"' | "'" *(byte - "'") "'" | 1*(text - '"' - "'" - '/' - '<' - '=' - '>' - '`')
//! ```
//!
-//! The grammar for HTML in markdown does not resemble the rules of parsing
+//! The grammar for HTML in markdown does not follow the rules of parsing
//! HTML according to the [*ยง 13.2 Parsing HTML documents* in the HTML
//! spec][html_parsing].
//! See the related flow construct [HTML (flow)][html_flow] for more info.