about summary refs log tree commit diff
path: root/docs/dev
diff options
context:
space:
mode:
authorJacek Generowicz <jacg@my-post-office.net>2020-06-10 20:32:29 +0200
committerJacek Generowicz <jacg@my-post-office.net>2020-06-10 20:32:29 +0200
commitf280407d7350c2abc4cc35389d389acdc5d93e28 (patch)
treee993542f8cbcb2036b9c5791f37c206ee24b7e0f /docs/dev
parent96309ba4a1bbbffd1c03f50a21bb68526550b925 (diff)
downloadrust-f280407d7350c2abc4cc35389d389acdc5d93e28.tar.gz
rust-f280407d7350c2abc4cc35389d389acdc5d93e28.zip
Fix parser test directory name in dev docs
Diffstat (limited to 'docs/dev')
-rw-r--r--docs/dev/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/README.md b/docs/dev/README.md
index cf93135ee9b..ef5ffbf597a 100644
--- a/docs/dev/README.md
+++ b/docs/dev/README.md
@@ -308,7 +308,7 @@ The results are 100% Rust specific though.
 Test for parser (`ra_parser`) live in `ra_syntax` crate (see `test_data` direcotory).
 There are two kinds of tests:
 
-* Manually written test cases in `parser/ok` and `parser/error`
+* Manually written test cases in `parser/ok` and `parser/err`
 * "Inline" tests in `parser/inline` (these are generated) from comments in `ra_parser` crate.
 
 The purpose of inline tests is not to achieve full coverage by test cases, but to explain to the reader of the code what each particular `if` and `match` is responsible for.