diff options
| author | alpaca-tc <alpaca-tc@alpaca.tc> | 2021-02-11 00:45:28 +0900 |
|---|---|---|
| committer | alpaca-tc <alpaca-tc@alpaca.tc> | 2021-02-11 00:45:28 +0900 |
| commit | 94b8f23baf045b16e2a8b2e2cdd7436724bbf8d5 (patch) | |
| tree | 2e5582a6d6cf98b1cdbe3889bdd18912e7eb6f06 | |
| parent | b5e4389f53a0e4f7e5c63592d9bee92cdf5ad079 (diff) | |
| download | rust-94b8f23baf045b16e2a8b2e2cdd7436724bbf8d5.tar.gz rust-94b8f23baf045b16e2a8b2e2cdd7436724bbf8d5.zip | |
Fix typo
| -rw-r--r-- | clippy_lints/src/methods/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/methods/mod.rs b/clippy_lints/src/methods/mod.rs index 4cb3a858511..d3db9c666df 100644 --- a/clippy_lints/src/methods/mod.rs +++ b/clippy_lints/src/methods/mod.rs @@ -1503,7 +1503,7 @@ declare_clippy_lint! { /// /// ```rust /// // Bad - /// let _ = "Hello".bytes().nth(3);; + /// let _ = "Hello".bytes().nth(3); /// /// // Good /// let _ = "Hello".as_bytes().get(3); |
