about summary refs log tree commit diff
path: root/src/doc/reference.md
diff options
context:
space:
mode:
authorNick Hamann <nick@wabbo.org>2015-05-09 16:08:02 -0500
committerNick Hamann <nick@wabbo.org>2015-05-09 16:08:02 -0500
commit7984074e25e2d4ac2b5bc125d44e38a280f964f9 (patch)
tree14cbf537d5e5b49da3a6b8c9d563dd56db4a1e83 /src/doc/reference.md
parenta1898f890d907fadd45a1a927c8cd76dfb4ecdea (diff)
downloadrust-7984074e25e2d4ac2b5bc125d44e38a280f964f9.tar.gz
rust-7984074e25e2d4ac2b5bc125d44e38a280f964f9.zip
Convert #[lang=".."] to #[lang = ".."] for docs too.
Diffstat (limited to 'src/doc/reference.md')
-rw-r--r--src/doc/reference.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md
index e3e542efb6a..16fdcfa3013 100644
--- a/src/doc/reference.md
+++ b/src/doc/reference.md
@@ -2028,7 +2028,7 @@ makes it possible to declare these operations. For example, the `str` module
 in the Rust standard library defines the string equality function:
 
 ```{.ignore}
-#[lang="str_eq"]
+#[lang = "str_eq"]
 pub fn eq_slice(a: &str, b: &str) -> bool {
     // details elided
 }