about summary refs log tree commit diff
path: root/src/doc/reference.md
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-05-10 05:32:20 +0000
committerbors <bors@rust-lang.org>2015-05-10 05:32:20 +0000
commit750f2c63f2737305d33288303cdecb7a470a7922 (patch)
treec4b7b0a038d5c0d9e83ac7ba40ad9332b5273b13 /src/doc/reference.md
parentdc630d01e3eae8ba05db98383119bc2ddbbb01c1 (diff)
parent2274bf126ae5aa9c3d010b5117118d61bda64972 (diff)
downloadrust-750f2c63f2737305d33288303cdecb7a470a7922.tar.gz
rust-750f2c63f2737305d33288303cdecb7a470a7922.zip
Auto merge of #25262 - Manishearth:rollup, r=Manishearth
- Successful merges: #25200, #25242, #25248, #25249, #25251, #25252, #25261
- Failed merges: #25255
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
 }