about summary refs log tree commit diff
path: root/src/doc/trpl/testing.md
diff options
context:
space:
mode:
authorTamir Duberstein <tamird@gmail.com>2015-03-14 16:09:26 -0700
committerTamir Duberstein <tamird@gmail.com>2015-03-15 11:25:43 -0700
commitf5765793b650e45e8c9bc89dfc7a4dc628123cb7 (patch)
tree36adbe36349138ea5a4578d3341a74825348570e /src/doc/trpl/testing.md
parentd51047ded072b412ec18a6f78c1fb80835a477f5 (diff)
downloadrust-f5765793b650e45e8c9bc89dfc7a4dc628123cb7.tar.gz
rust-f5765793b650e45e8c9bc89dfc7a4dc628123cb7.zip
Strip trailing whitespace
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 54c74fdd3e2..537e100d7d8 100644
--- a/src/doc/trpl/testing.md
+++ b/src/doc/trpl/testing.md
@@ -1,7 +1,7 @@
 % Testing
 
 > Program testing can be a very effective way to show the presence of bugs, but
-> it is hopelessly inadequate for showing their absence. 
+> it is hopelessly inadequate for showing their absence.
 >
 > Edsger W. Dijkstra, "The Humble Programmer" (1972)
 
@@ -308,7 +308,7 @@ extern crate adder;
 #[test]
 fn it_works() {
     assert_eq!(4, adder::add_two(2));
-}   
+}
 ```
 
 This looks similar to our previous tests, but slightly different. We now have