You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 <jacg@my-post-office.net>
Copy file name to clipboardExpand all lines: docs/dev/README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -308,7 +308,7 @@ The results are 100% Rust specific though.
308
308
Test for parser (`ra_parser`) live in `ra_syntax` crate (see `test_data` direcotory).
309
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
312
* "Inline" tests in `parser/inline` (these are generated) from comments in `ra_parser` crate.
313
313
314
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.
0 commit comments