about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRyan Wiedemann <Ryan1729@gmail.com>2020-08-12 08:54:32 -0600
committerGitHub <noreply@github.com>2020-08-12 08:54:32 -0600
commit7d2e42daec1a56ad8f70a2b146bd842e98e0430d (patch)
treecc3a76745c401871d1eb0e80c321efab029a38e0
parentfbf637d12c95528846bfa65ce67bd652f2affb43 (diff)
downloadrust-7d2e42daec1a56ad8f70a2b146bd842e98e0430d.tar.gz
rust-7d2e42daec1a56ad8f70a2b146bd842e98e0430d.zip
fix typo pointed out in review comment
Co-authored-by: Philipp Krones <hello@philkrones.com>
-rw-r--r--clippy_lints/src/ptr.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/ptr.rs b/clippy_lints/src/ptr.rs
index 7f58a381adc..31da45f6b8a 100644
--- a/clippy_lints/src/ptr.rs
+++ b/clippy_lints/src/ptr.rs
@@ -37,7 +37,7 @@ declare_clippy_lint! {
     /// this lint on them will fix the problem, but they may be in other crates.
     ///
     /// One notable example of a function that may cause issues, and which cannot
-    /// easily be changed due to beinng in the standard library is `Vec::contains`.
+    /// easily be changed due to being in the standard library is `Vec::contains`.
     /// when called on a `Vec<Vec<T>>`. If a `&Vec` is passed to that method then
     /// it will compile, but if a `&[T]` is passed then it will not compile.
     ///