Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/stdx/src/assert.rs')
-rw-r--r--crates/stdx/src/assert.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/stdx/src/assert.rs b/crates/stdx/src/assert.rs
index 91c279798c..6032395a4d 100644
--- a/crates/stdx/src/assert.rs
+++ b/crates/stdx/src/assert.rs
@@ -43,7 +43,7 @@
/// Asserts that the condition is always true and returns its actual value.
///
-/// If the condition is true does nothing and and evaluates to true.
+/// If the condition is true does nothing and evaluates to true.
///
/// If the condition is false:
/// * panics if `force` feature or `debug_assertions` are enabled,
@@ -71,7 +71,7 @@ macro_rules! always {
/// Asserts that the condition is never true and returns its actual value.
///
-/// If the condition is false does nothing and and evaluates to false.
+/// If the condition is false does nothing and evaluates to false.
///
/// If the condition is true:
/// * panics if `force` feature or `debug_assertions` are enabled,