diff options
| author | Titus <tituswormer@gmail.com> | 2022-08-15 16:18:00 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-15 16:18:00 +0200 |
| commit | 8e80c39d2ddfaf2fcba084db2e32b2db461d94c7 (patch) | |
| tree | 2331aed9e8a4b5dc8b95e64f12b26435df99d275 | |
| parent | 6ce76091c7cef21692a15dce1f0a4c415d245be4 (diff) | |
| download | rust-8e80c39d2ddfaf2fcba084db2e32b2db461d94c7.tar.gz rust-8e80c39d2ddfaf2fcba084db2e32b2db461d94c7.zip | |
Fix trailing space showing up in example
The current text is rendered as: U+005B ..= U+0060 ``[ \ ] ^ _ ` ``, or. This patch changes that to render as: U+005B ..= U+0060 `` [ \ ] ^ _ ` ``, or The reason for that, is that CommonMark has a solution for starting or ending inline code with a backtick/grave accent: padding both sides with a space, makes that padding disappear.
| -rw-r--r-- | library/core/src/num/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/num/mod.rs b/library/core/src/num/mod.rs index f481399fdcf..72b6dc28185 100644 --- a/library/core/src/num/mod.rs +++ b/library/core/src/num/mod.rs @@ -623,7 +623,7 @@ impl u8 { /// /// - U+0021 ..= U+002F `! " # $ % & ' ( ) * + , - . /`, or /// - U+003A ..= U+0040 `: ; < = > ? @`, or - /// - U+005B ..= U+0060 ``[ \ ] ^ _ ` ``, or + /// - U+005B ..= U+0060 `` [ \ ] ^ _ ` ``, or /// - U+007B ..= U+007E `{ | } ~` /// /// # Examples |
