about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2017-02-15 23:48:21 -0500
committerGitHub <noreply@github.com>2017-02-15 23:48:21 -0500
commit23e2d2ff3780978f650f90d9d4e17dbc444730d7 (patch)
treee11b483d6fa6e13b8d9207b90b660dadae9842a1
parent12f3e45106c2e956b06c1cfcd78fbffb6105a3e8 (diff)
parent577497b541110f814c8385eff86a2d2e4b935585 (diff)
downloadrust-23e2d2ff3780978f650f90d9d4e17dbc444730d7.tar.gz
rust-23e2d2ff3780978f650f90d9d4e17dbc444730d7.zip
Rollup merge of #39846 - WRONGWAY4YOU:typo-fix, r=frewsxcv
Fix typo
-rw-r--r--src/grammar/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/grammar/README.md b/src/grammar/README.md
index cd2dd38de36..83808108ff8 100644
--- a/src/grammar/README.md
+++ b/src/grammar/README.md
@@ -8,7 +8,7 @@ The build of the rust part is included with `make tidy` and can be run with `mak
 
 # Manual build
 
-To use manually, assuming antlr4 ist installed at `/usr/share/java/antlr-complete.jar`:
+To use manually, assuming antlr4 is installed at `/usr/share/java/antlr-complete.jar`:
 
 ```
 antlr4 RustLexer.g4
@@ -20,8 +20,8 @@ for file in ../*/**.rs; do
 done
 ```
 
-Note That the `../*/**.rs` glob will match every `*.rs` file in the above
-directory and all of its recursive children. This is a zsh extension.
+Note that the `../*/**.rs` glob will match every `*.rs` file in the above
+directory and all of its recursive children. This is a Zsh extension.
 
 
 ## Cleanup