diff options
| author | Paul Osborne <osbpau@gmail.com> | 2016-10-19 13:37:15 -0500 |
|---|---|---|
| committer | Paul Osborne <osbpau@gmail.com> | 2016-10-19 13:39:27 -0500 |
| commit | d79ec7e310edff89e7f3b0322a8acb2403a7dc28 (patch) | |
| tree | a49ac8ab023d3c071cb0f3e0c059a7dcdf7dd720 | |
| parent | cfc9b5185bbf5ab04a2736347bfa7fd9ab70c1e7 (diff) | |
| download | rust-d79ec7e310edff89e7f3b0322a8acb2403a7dc28.tar.gz rust-d79ec7e310edff89e7f3b0322a8acb2403a7dc28.zip | |
Fix grammatical errors in `tests` directory docs
| -rw-r--r-- | src/doc/book/testing.md | 6 |
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; |
