about summary refs log tree commit diff
path: root/src/doc/reference.md
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2015-04-27 16:47:12 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2015-04-27 16:53:25 +0200
commitf6c673e9f078575edb54a8d2fecf8d2edbb76f82 (patch)
treebd92f6e6dd4c85c5aa113303c14c176631e28b47 /src/doc/reference.md
parentf4ab2b3a259a7a0418c6dd66dc9f11f20b0f6eff (diff)
downloadrust-f6c673e9f078575edb54a8d2fecf8d2edbb76f82.tar.gz
rust-f6c673e9f078575edb54a8d2fecf8d2edbb76f82.zip
reference: add missing bracket
Also, remove the other brackets, because they make the whole sentence
look awkward.
Diffstat (limited to 'src/doc/reference.md')
-rw-r--r--src/doc/reference.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md
index 7c9cca90edd..8bd48181008 100644
--- a/src/doc/reference.md
+++ b/src/doc/reference.md
@@ -1889,8 +1889,8 @@ release builds.
 
 There are two kinds of configuration options, one that is either defined or not
 (`#[cfg(foo)]`), and the other that contains a string that can be checked
-against (`#[cfg(bar = "baz")]` (currently only compiler-defined configuration
-options can have the latter form).
+against (`#[cfg(bar = "baz")]`). Currently, only compiler-defined configuration
+options can have the latter form.
 
 ```
 // The function is only included in the build when compiling for OSX