]> git.lizzy.rs Git - rust.git/blobdiff - Contributing.md
Merge pull request #1084 from johannhof/rustfmt-not-found
[rust.git] / Contributing.md
index 1206a4840ca58f42935cef61b5a4df64f29f8ab3..50b489cc1300d402f370f742518f2419b6c7444f 100644 (file)
@@ -59,7 +59,7 @@ file found at `./tests/config/small_tabs.toml`.
 
 ## Hack!
 
-Here are some [good starting issues](https://github.com/nrc/rustfmt/issues?q=is%3Aopen+is%3Aissue+label%3Aeasy).
+Here are some [good starting issues](https://github.com/rust-lang-nursery/rustfmt/issues?q=is%3Aopen+is%3Aissue+label%3Aeasy).
 
 If you've found areas which need polish and don't have issues, please submit a
 PR, don't feel there needs to be an issue.
@@ -81,7 +81,7 @@ wish there weren't. You can leave `FIXME`s, preferably with an issue number.
 
 ### A quick tour of Rustfmt
 
-Rustfmt is basically a pretty printer - that is, it's mode of operation is to
+Rustfmt is basically a pretty printer - that is, its mode of operation is to
 take an AST (abstract syntax tree) and print it in a nice way (including staying
 under the maximum permitted width for a line). In order to get that AST, we
 first have to parse the source text, we use the Rust compiler's parser to do
@@ -174,7 +174,7 @@ know how to reformat, but more often it is because Rustfmt can't fit the item
 into the required width. How to handle this is up to the caller. Often the
 caller just gives up, ultimately relying on the missed spans system to paste in
 the un-formatted source. A better solution (although not performed in many
-places) is for the caller to shuffle around some of it's other items to make
+places) is for the caller to shuffle around some of its other items to make
 more width, then call the function again with more space.
 
 Since it is common for callers to bail out when a callee fails, we often use a