]> git.lizzy.rs Git - rust.git/blobdiff - src/libcore/ops/mod.rs
Various minor/cosmetic improvements to code
[rust.git] / src / libcore / ops / mod.rs
index edfa6df11aceb6e958273084271ccf87762d20e9..785f0733df2b85eb3cdbe9023eb434b2fefc5f4f 100644 (file)
@@ -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.