about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2016-10-19 23:15:01 +0200
committerGitHub <noreply@github.com>2016-10-19 23:15:01 +0200
commitdfb74ee97b2210fb9f3f00bbbd3494180b0e527b (patch)
tree85c0e2746ff30383f2f9e2f6943c7a5955c5fa5e
parent123a6ef25cdd5463eef183d0113e3166cdd7b800 (diff)
parentd79ec7e310edff89e7f3b0322a8acb2403a7dc28 (diff)
downloadrust-dfb74ee97b2210fb9f3f00bbbd3494180b0e527b.tar.gz
rust-dfb74ee97b2210fb9f3f00bbbd3494180b0e527b.zip
Rollup merge of #37283 - posborne:docs/tests-dir-grammar-fixes, r=steveklabnik
Fix grammatical errors in `tests` directory docs
-rw-r--r--src/doc/book/testing.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/doc/book/testing.md b/src/doc/book/testing.md
index 86729147ed0..3bdf1b7b7f2 100644
--- a/src/doc/book/testing.md
+++ b/src/doc/book/testing.md
@@ -380,9 +380,9 @@ the `tests` directory.
 
 # The `tests` directory
 
-Each file in `tests/*.rs` directory is treated as individual crate.
-So, to write an integration test, let's make a `tests` directory, and
-put a `tests/integration_test.rs` file inside, with this as its contents:
+Each file in `tests/*.rs` directory is treated as an individual crate.
+To write an integration test, let's make a `tests` directory and
+put a `tests/integration_test.rs` file inside with this as its contents:
 
 ```rust,ignore
 extern crate adder;