diff options
| author | Tshepang Lekhonkhobe <tshepang@gmail.com> | 2016-02-11 23:05:00 +0200 | 
|---|---|---|
| committer | Tshepang Lekhonkhobe <tshepang@gmail.com> | 2016-02-11 23:06:36 +0200 | 
| commit | 2f20d5aa5f3392a38643f17683dd25c1dd7062c2 (patch) | |
| tree | 1fd2b3fdf8cd07d27f55694ee8d81775292ce9cd /src/libstd/ascii.rs | |
| parent | a91ff1c9d1842918329ef7a81afd3848854d53c7 (diff) | |
| download | rust-2f20d5aa5f3392a38643f17683dd25c1dd7062c2.tar.gz rust-2f20d5aa5f3392a38643f17683dd25c1dd7062c2.zip | |
doc: assert_eq on 2 boolean values is redundant
Diffstat (limited to 'src/libstd/ascii.rs')
| -rw-r--r-- | src/libstd/ascii.rs | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/src/libstd/ascii.rs b/src/libstd/ascii.rs index 38f79079b29..83cf670502f 100644 --- a/src/libstd/ascii.rs +++ b/src/libstd/ascii.rs @@ -55,8 +55,8 @@ pub trait AsciiExt { /// let ascii = 'a'; /// let utf8 = '❤'; /// - /// assert_eq!(true, ascii.is_ascii()); - /// assert_eq!(false, utf8.is_ascii()) + /// assert!(ascii.is_ascii()); + /// assert!(!utf8.is_ascii()); /// ``` #[stable(feature = "rust1", since = "1.0.0")] fn is_ascii(&self) -> bool; @@ -114,9 +114,9 @@ pub trait AsciiExt { /// let ascii3 = 'A'; /// let ascii4 = 'z'; /// - /// assert_eq!(true, ascii1.eq_ignore_ascii_case(&ascii2)); - /// assert_eq!(true, ascii1.eq_ignore_ascii_case(&ascii3)); - /// assert_eq!(false, ascii1.eq_ignore_ascii_case(&ascii4)); + /// assert!(ascii1.eq_ignore_ascii_case(&ascii2)); + /// assert!(ascii1.eq_ignore_ascii_case(&ascii3)); + /// assert!(!ascii1.eq_ignore_ascii_case(&ascii4)); /// ``` #[stable(feature = "rust1", since = "1.0.0")] fn eq_ignore_ascii_case(&self, other: &Self) -> bool; | 
