about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCatherine <114838443+Centri3@users.noreply.github.com>2023-05-25 11:15:30 -0500
committerCentri3 <114838443+Centri3@users.noreply.github.com>2023-05-31 17:30:23 -0500
commit48d36a7aa3d8281352ac70c240d98c18b0a9adfa (patch)
tree56ca382570f4a77e5695fef76ed919bf09f2ecd2
parent97a0ccc1d312ed763584c28b6d669cffba87c910 (diff)
downloadrust-48d36a7aa3d8281352ac70c240d98c18b0a9adfa.tar.gz
rust-48d36a7aa3d8281352ac70c240d98c18b0a9adfa.zip
weird grammar
-rw-r--r--clippy_lints/src/endian_bytes.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/clippy_lints/src/endian_bytes.rs b/clippy_lints/src/endian_bytes.rs
index 6486430cf57..88e0d4dcd53 100644
--- a/clippy_lints/src/endian_bytes.rs
+++ b/clippy_lints/src/endian_bytes.rs
@@ -30,7 +30,7 @@ declare_clippy_lint! {
     /// Checks for the usage of the `to_le_bytes` method.
     ///
     /// ### Why is this bad?
-    /// It's not, but some may wish to lint usages of this method, either to suggest using the host
+    /// It's not, but some may wish to lint usage of this method, either to suggest using the host
     /// endianness or big endian.
     ///
     /// ### Example
@@ -49,7 +49,7 @@ declare_clippy_lint! {
     /// Checks for the usage of the `to_be_bytes` method.
     ///
     /// ### Why is this bad?
-    /// It's not, but some may wish to lint usages of this method, either to suggest using the host
+    /// It's not, but some may wish to lint usage of this method, either to suggest using the host
     /// endianness or little endian.
     ///
     /// ### Example