]> git.lizzy.rs Git - rust.git/commitdiff
doc: grammar fixes
authorTshepang Lekhonkhobe <tshepang@gmail.com>
Tue, 19 Aug 2014 23:31:07 +0000 (01:31 +0200)
committerTshepang Lekhonkhobe <tshepang@gmail.com>
Tue, 19 Aug 2014 23:31:07 +0000 (01:31 +0200)
src/doc/complement-design-faq.md
src/doc/guide-unsafe.md
src/libserialize/json.rs

index eb060d06cc4ff3fc33b3aee7c907b77c8804d449..a90a873730830dd61959ce48d58f44e59a3f80a2 100644 (file)
@@ -1,6 +1,6 @@
 % The Rust Design FAQ
 
-This document describes decisions were arrived at after lengthy discussion and
+This document describes decisions that were arrived at after lengthy discussion and
 experimenting with alternatives. Please do not propose reversing them unless
 you have a new, extremely compelling argument. Note that this document
 specifically talks about the *language* and not any library or implementation.
index b46b09781ca38bb4ea1cd8542e0422e38966b727..a95401682cf0d5ed1264da61325f0d26c1ff222e 100644 (file)
@@ -446,7 +446,7 @@ possible in two ways: the `#[start]` attribute, or overriding the
 default shim for the C `main` function with your own.
 
 The function marked `#[start]` is passed the command line parameters
-in the same format as C:
+in the same format as C:
 
 ```
 #![no_std]
@@ -593,7 +593,7 @@ standard library itself.
 # Interacting with the compiler internals
 
 > **Note**: this section is specific to the `rustc` compiler; these
-> parts of the language may never be full specified and so details may
+> parts of the language may never be fully specified and so details may
 > differ wildly between implementations (and even versions of `rustc`
 > itself).
 >
index 51b8985e655a577ba8bbccb760898651b17716a2..64e30e753850cf633081dd271d3193b181333ec4 100644 (file)
@@ -106,7 +106,7 @@ fn main() {
 
 ## Using the `ToJson` trait
 
-The examples above use the `ToJson` trait to generate the JSON string, which required
+The examples above use the `ToJson` trait to generate the JSON string, which is required
 for custom mappings.
 
 ### Simple example of `ToJson` usage