diff options
| author | Donnie Bishop <donnie.a.bishop@gmail.com> | 2017-03-30 18:33:23 -0400 |
|---|---|---|
| committer | Donnie Bishop <donnie.a.bishop@gmail.com> | 2017-03-30 18:33:23 -0400 |
| commit | 3b396217b5b52cf87769263bf0b842c56471b54f (patch) | |
| tree | c007459591d1abb88f2c9390149e7d1eaf0e25d7 /src/libstd_unicode | |
| parent | c4b11d19b85f970b759f14e6dd864512d8c41f66 (diff) | |
| download | rust-3b396217b5b52cf87769263bf0b842c56471b54f.tar.gz rust-3b396217b5b52cf87769263bf0b842c56471b54f.zip | |
Remove parentheses in method references
Diffstat (limited to 'src/libstd_unicode')
| -rw-r--r-- | src/libstd_unicode/u_str.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd_unicode/u_str.rs b/src/libstd_unicode/u_str.rs index d3aa27b436d..770b67acd49 100644 --- a/src/libstd_unicode/u_str.rs +++ b/src/libstd_unicode/u_str.rs @@ -20,10 +20,10 @@ use core::str::Split; /// An iterator over the non-whitespace substrings of a string, /// separated by any amount of whitespace. /// -/// This struct is created by the [`split_whitespace()`] method on [`str`]. +/// This struct is created by the [`split_whitespace`] method on [`str`]. /// See its documentation for more. /// -/// [`split_whitespace()`]: ../../std/primitive.str.html#method.split_whitespace +/// [`split_whitespace`]: ../../std/primitive.str.html#method.split_whitespace /// [`str`]: ../../std/primitive.str.html #[stable(feature = "split_whitespace", since = "1.1.0")] pub struct SplitWhitespace<'a> { |
