From db05e5373619a1cd20b3e560d8e1d3fe56ab96c0 Mon Sep 17 00:00:00 2001 From: ZapAnton Date: Mon, 23 Jul 2018 19:15:41 +0300 Subject: [PATCH] grep: Fixed typo in the README --- exercises/grep/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/grep/README.md b/exercises/grep/README.md index 36727d25a..c2d340de1 100644 --- a/exercises/grep/README.md +++ b/exercises/grep/README.md @@ -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. @@ -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