]> git.lizzy.rs Git - rust.git/blobdiff - src/libstd/sync/mod.rs
Various minor/cosmetic improvements to code
[rust.git] / src / libstd / sync / mod.rs
index a7db372a0e20a86a42cf326c78d4949f4531fc2c..81356e68bc0b81d88224d8edcb974b82b39440e4 100644 (file)
@@ -89,7 +89,7 @@
 //!
 //! - A **single processor** executing instructions [out-of-order]:
 //!   Modern CPUs are capable of [superscalar] execution,
-//!   i.e. multiple instructions might be executing at the same time,
+//!   i.e., multiple instructions might be executing at the same time,
 //!   even though the machine code describes a sequential process.
 //!
 //!   This kind of reordering is handled transparently by the CPU.