about summary refs log tree commit diff
diff options
context:
space:
mode:
author吴冉波 <wuranbo@gmail.com>2016-07-06 13:52:40 +0800
committerGitHub <noreply@github.com>2016-07-06 13:52:40 +0800
commit7f3068e52f1943d612923f819dc8d0e996faaaf4 (patch)
treefcdcdaad460d758247f5c5b4ff1286a12b9b6a7a
parentdd8151f5e2bd12964f6ed99c8a0d91e7e6c3d3a2 (diff)
downloadrust-7f3068e52f1943d612923f819dc8d0e996faaaf4.tar.gz
rust-7f3068e52f1943d612923f819dc8d0e996faaaf4.zip
typo nothings -> nothing
-rw-r--r--src/doc/book/conditional-compilation.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/book/conditional-compilation.md b/src/doc/book/conditional-compilation.md
index a175d7cc38b..2857d7e64c5 100644
--- a/src/doc/book/conditional-compilation.md
+++ b/src/doc/book/conditional-compilation.md
@@ -42,7 +42,7 @@ they get set in the [`[features]` section][features] of your `Cargo.toml`:
 default = []
 
 # Add feature "foo" here, then you can use it. 
-# Our "foo" feature depends on nothings else.
+# Our "foo" feature depends on nothing else.
 foo = []
 
 # The “secure-password” feature depends on the bcrypt package.