about summary refs log tree commit diff
path: root/src/libcore/ops/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcore/ops/mod.rs')
-rw-r--r--src/libcore/ops/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/ops/mod.rs b/src/libcore/ops/mod.rs
index edfa6df11ac..785f0733df2 100644
--- a/src/libcore/ops/mod.rs
+++ b/src/libcore/ops/mod.rs
@@ -27,7 +27,7 @@
 //! should have some resemblance to multiplication (and share expected
 //! properties like associativity).
 //!
-//! Note that the `&&` and `||` operators short-circuit, i.e. they only
+//! Note that the `&&` and `||` operators short-circuit, i.e., they only
 //! evaluate their second operand if it contributes to the result. Since this
 //! behavior is not enforceable by traits, `&&` and `||` are not supported as
 //! overloadable operators.