We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1671b9b commit 50de1d6Copy full SHA for 50de1d6
src/librustc_unicode/char.rs
@@ -188,21 +188,15 @@ impl char {
188
///
189
/// ```
190
/// for i in '❤'.escape_unicode() {
191
- /// println!("{}", i);
+ /// print!("{}", i);
192
/// }
193
+ /// println!("");
194
195
196
/// This prints:
197
198
/// ```text
- /// \
199
- /// u
200
- /// {
201
- /// 2
202
- /// 7
203
- /// 6
204
- /// 4
205
- /// }
+ /// \u{2764}
206
207
208
/// Collecting into a `String`:
0 commit comments