]> git.lizzy.rs Git - rust.git/commitdiff
complement-lang-faq.md: fix typos
authorPhilipp Gesang <phg42.2a@gmail.com>
Tue, 15 Jul 2014 21:59:13 +0000 (23:59 +0200)
committerPhilipp Gesang <phg42.2a@gmail.com>
Wed, 16 Jul 2014 06:01:59 +0000 (08:01 +0200)
src/doc/complement-lang-faq.md

index ae58db9077cabd418abd9d673333244aefd06e24..ce037251e46b44940fa754d5c8f6185647cfff9d 100644 (file)
@@ -31,7 +31,7 @@ You may also be interested in browsing [GitHub's Rust][github-rust] page.
 
 ## Does it run on Windows?
 
-Yes. All development happens in lock-step on all 3 target platforms. Using MinGW, not Cygwin. Note that the windows implementation currently has some limitations: in particular 64-bit build is [not fully supported yet][win64], and all executables created by rustc [depends on libgcc DLL at runtime][libgcc].
+Yes. All development happens in lock-step on all 3 target platforms. Using MinGW, not Cygwin. Note that the windows implementation currently has some limitations: in particular 64-bit build is [not fully supported yet][win64], and all executables created by rustc [depend on libgcc DLL at runtime][libgcc].
 
 [win64]: https://github.com/rust-lang/rust/issues/1237
 [libgcc]: https://github.com/rust-lang/rust/issues/11782
@@ -68,7 +68,7 @@ Cleanup through RAII-style destructors is more likely to work than in catch bloc
 
 ## Why aren't modules type-parametric?
 
-We want to maintain the option to parametrize at runtime. We may make eventually change this limitation, but initially this is how type parameters were implemented.
+We want to maintain the option to parametrize at runtime. We may eventually change this limitation, but initially this is how type parameters were implemented.
 
 ## Why aren't values type-parametric? Why only items?