Skip to content

Commit 1e278c1

Browse files
committed
Update src/grammar/README.md
1 parent f066acf commit 1e278c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/grammar/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Reference grammar.
22

33
Uses [antlr4](http://www.antlr.org/) and a custom Rust tool to compare
4-
ASTs/token streams generated. You can use the `check-syntax` make target to
4+
ASTs/token streams generated. You can use the `check-lexer` make target to
55
run all of the available tests.
66

77
To use manually:
@@ -12,7 +12,7 @@ javac *.java
1212
rustc -O verify.rs
1313
for file in ../*/**.rs; do
1414
echo $file;
15-
grun RustLexer tokens -tokens < $file | ./verify $file || break
15+
grun RustLexer tokens -tokens < $file | ./verify $file RustLexer.tokens || break
1616
done
1717
```
1818

0 commit comments

Comments
 (0)