diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-06-10 20:29:04 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-06-10 20:29:04 +0100 |
commit | dfbd81e84a699005db4e88e9fbf8d4440525a097 (patch) | |
tree | e993542f8cbcb2036b9c5791f37c206ee24b7e0f /docs/dev/README.md | |
parent | 96309ba4a1bbbffd1c03f50a21bb68526550b925 (diff) | |
parent | f280407d7350c2abc4cc35389d389acdc5d93e28 (diff) |
Merge #4837
4837: Fix parser test directory name in dev docs r=matklad a=jacg
The docs referred to `parser/error` while in reality it is `parser/err`.
Co-authored-by: Jacek Generowicz <[email protected]>
Diffstat (limited to 'docs/dev/README.md')
-rw-r--r-- | docs/dev/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/README.md b/docs/dev/README.md index cf93135ee..ef5ffbf59 100644 --- a/docs/dev/README.md +++ b/docs/dev/README.md | |||
@@ -308,7 +308,7 @@ The results are 100% Rust specific though. | |||
308 | Test for parser (`ra_parser`) live in `ra_syntax` crate (see `test_data` direcotory). | 308 | Test for parser (`ra_parser`) live in `ra_syntax` crate (see `test_data` direcotory). |
309 | There are two kinds of tests: | 309 | There are two kinds of tests: |
310 | 310 | ||
311 | * Manually written test cases in `parser/ok` and `parser/error` | 311 | * Manually written test cases in `parser/ok` and `parser/err` |
312 | * "Inline" tests in `parser/inline` (these are generated) from comments in `ra_parser` crate. | 312 | * "Inline" tests in `parser/inline` (these are generated) from comments in `ra_parser` crate. |
313 | 313 | ||
314 | 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. | 314 | 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. |