about summary refs log tree commit diff
path: root/src/doc/trpl/testing.md
diff options
context:
space:
mode:
authorKevin Yap <me@kevinyap.ca>2015-01-08 16:52:50 -0800
committerKevin Yap <me@kevinyap.ca>2015-01-08 17:15:26 -0800
commit8f61814641c0fbbb929c8a04658d4ea819b4db51 (patch)
tree192edd3dd39bad177fdca131f104b039ec861985 /src/doc/trpl/testing.md
parent6354d60ede5e2a7e60fa46f85243efd8dbe89711 (diff)
downloadrust-8f61814641c0fbbb929c8a04658d4ea819b4db51.tar.gz
rust-8f61814641c0fbbb929c8a04658d4ea819b4db51.zip
Standardize punctuation & formatting of TRPL
This commit is an attempt to standardize the use of punctuation and
formatting in "The Rust Programming Language" as discussed in #19823.

- Convert bold text to italicized textcwhen referring to terminology.
- Convert single-quoted text to italicized or double-quoted text,
  depending on context.
- Use double quotes only in the case of scare quotes or quotations.
Diffstat (limited to 'src/doc/trpl/testing.md')
-rw-r--r--src/doc/trpl/testing.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/trpl/testing.md b/src/doc/trpl/testing.md
index 4c3d93bdfbe..791a90bdf9b 100644
--- a/src/doc/trpl/testing.md
+++ b/src/doc/trpl/testing.md
@@ -294,9 +294,9 @@ test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured
 
 It works!
 
-The current convention is to use the `test` module to hold your "unit"-style
+The current convention is to use the `test` module to hold your "unit-style"
 tests. Anything that just tests one small bit of functionality makes sense to
-go here. But what about "integration"-style tests instead? For that, we have
+go here. But what about "integration-style" tests instead? For that, we have
 the `tests` directory
 
 # The `tests` directory