Skip to content

grep: Fixed typo in the README #587

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 6, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions exercises/grep/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ $ cargo test
```

All but the first test have been ignored. After you get the first test to
pass, open the tests source file wich is located in the `tests` directory
pass, open the tests source file which is located in the `tests` directory
and remove the `#[ignore]` flag from the next test and get the tests to pass
again. Each separate test is a function with `#[test]` flag above it.
Continue, until you pass every test.
Expand All @@ -112,7 +112,7 @@ To run a specific test, for example `some_test`, you can use:
$ cargo test some_test
```

If the specfic test is ignored use:
If the specific test is ignored use:

```bash
$ cargo test some_test -- --ignored
Expand Down