]> git.lizzy.rs Git - rust.git/commitdiff
grammar: fix
authorSander Maijers <S.N.Maijers@gmail.com>
Fri, 15 Apr 2016 20:33:50 +0000 (22:33 +0200)
committerSander Maijers <S.N.Maijers@gmail.com>
Fri, 15 Apr 2016 20:33:50 +0000 (22:33 +0200)
Reading this, one item stood out a bit. Small improvements here.

. ‘Compile-time’ is not a noun, ‘compilation time’ was meant;
. Mathematical formulas are best not rendered as code;
. Use the same tense as in other items.

RELEASES.md

index 6533102a92d56fe2449f629d643fda74290e8a8a..b13e138198c9944b453cbb9f61c47d95030c6cc0 100644 (file)
@@ -140,9 +140,9 @@ Cargo
 Performance
 -----------
 
-* [During type unification, the complexity of comparing variables for
-  equivalance was reduced from `O(n!)` to `O(n)`][1.9tu]. This leads
-  to major compile-time improvements in some scenarios.
+* [The complexity of comparing variables for equivalence during type 
+  unification is reduced from O(n!) to O(n)[1.9tu]. This leads
+  to major compilation time improvement in some scenarios.
 * [`ToString` is specialized for `str`, giving it the same performance
   as `to_owned`][1.9ts].
 * [Spawning processes with `Command::output` no longer creates extra