File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -369,11 +369,15 @@ impl fmt::Display for Utf8Error {
369
369
Section: Iterators
370
370
*/
371
371
372
- /// Iterator for the char (representing *Unicode Scalar Values*) of a string.
372
+ /// An iterator over the [` char`]s of a string slice .
373
373
///
374
- /// Created with the method [`chars`].
374
+ /// [`char`]: ../../std/primitive.char.html
375
+ ///
376
+ /// This struct is created by the [`chars()`] method on [`str`].
377
+ /// See its documentation for more.
375
378
///
376
- /// [`chars`]: ../../std/primitive.str.html#method.chars
379
+ /// [`chars()`]: ../../std/primitive.str.html#method.chars
380
+ /// [`str`]: ../../std/primitive.str.html
377
381
#[ derive( Clone , Debug ) ]
378
382
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
379
383
pub struct Chars < ' a > {
You can’t perform that action at this time.
0 commit comments