about summary refs log tree commit diff
path: root/clippy_lints/src/mutable_debug_assertion.rs
diff options
context:
space:
mode:
authorxFrednet <xFrednet@gmail.com>2022-05-21 13:24:00 +0200
committerxFrednet <xFrednet@gmail.com>2022-05-21 13:24:00 +0200
commit4587b6628d1dff4a3c23ffcaadb7276d12f1e165 (patch)
tree1945f71c35dfc6788c1d22a65ce5194145756930 /clippy_lints/src/mutable_debug_assertion.rs
parent8d04a32ab4939c70c8db1c67a29600c64c6499a4 (diff)
downloadrust-4587b6628d1dff4a3c23ffcaadb7276d12f1e165.tar.gz
rust-4587b6628d1dff4a3c23ffcaadb7276d12f1e165.zip
Merge 'rust-clippy/master' into clippyup
Diffstat (limited to 'clippy_lints/src/mutable_debug_assertion.rs')
-rw-r--r--clippy_lints/src/mutable_debug_assertion.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/mutable_debug_assertion.rs b/clippy_lints/src/mutable_debug_assertion.rs
index cd1bc202370..bb6d820b08c 100644
--- a/clippy_lints/src/mutable_debug_assertion.rs
+++ b/clippy_lints/src/mutable_debug_assertion.rs
@@ -16,7 +16,7 @@ declare_clippy_lint! {
     /// ### Why is this bad?
     /// In release builds `debug_assert!` macros are optimized out by the
     /// compiler.
-    /// Therefore mutating something in a `debug_assert!` macro results in different behaviour
+    /// Therefore mutating something in a `debug_assert!` macro results in different behavior
     /// between a release and debug build.
     ///
     /// ### Example