aboutsummaryrefslogtreecommitdiffstats
path: root/src/construct/character_escape.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/character_escape.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/character_escape.rs')
-rw-r--r--src/construct/character_escape.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/construct/character_escape.rs b/src/construct/character_escape.rs
index 67946a0..471fc8c 100644
--- a/src/construct/character_escape.rs
+++ b/src/construct/character_escape.rs
@@ -11,11 +11,10 @@
//!
//! Like much of markdown, there are no “invalid” character escapes: just a
//! slash, or a slash followed by anything other than an ASCII punctuation
-//! character, is exactly that: just a slash.
+//! character, is just a slash.
//!
-//! To escape (almost all) arbitrary characters instead of only ASCII
-//! punctuation, use a [character reference][character_reference] instead
-//! (as in, `&amp;`, `&#123;`, or say `&#x9;`).
+//! To escape other characters, use a [character reference][character_reference]
+//! instead (as in, `&amp;`, `&#123;`, or say `&#x9;`).
//!
//! It is also possible to escape a line ending in text with a similar
//! construct: a [hard break (escape)][hard_break_escape] is a backslash followed