about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorsteveklabnik <steve@steveklabnik.com>2017-10-25 14:23:13 -0400
committersteveklabnik <steve@steveklabnik.com>2017-10-25 14:23:13 -0400
commita82ffa490cb0eb776db445a33621e84425ea2103 (patch)
tree6c5ad30a05698af84216e7428978dd23990cb4d5 /src
parentf764eaf453162cd19ef484ece07cc21e14dfb2c1 (diff)
downloadrust-a82ffa490cb0eb776db445a33621e84425ea2103.tar.gz
rust-a82ffa490cb0eb776db445a33621e84425ea2103.zip
Fix formatting in unstable book's attr-literals section
Diffstat (limited to 'src')
-rw-r--r--src/doc/unstable-book/src/language-features/attr-literals.md24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/doc/unstable-book/src/language-features/attr-literals.md b/src/doc/unstable-book/src/language-features/attr-literals.md
index 60741a74400..6606f3c4e5c 100644
--- a/src/doc/unstable-book/src/language-features/attr-literals.md
+++ b/src/doc/unstable-book/src/language-features/attr-literals.md
@@ -15,16 +15,16 @@ The `attr_literals` unstable feature allows other types of literals to be used
 in attributes. Here are some examples of attributes that can now be used with
 this feature enabled:
 
-+```rust,ignore
-+#[attr]
-+#[attr(true)]
-+#[attr(ident)]
-+#[attr(ident, 100, true, "true", ident = 100, ident = "hello", ident(100))]
-+#[attr(100)]
-+#[attr(enabled = true)]
-+#[enabled(true)]
-+#[attr("hello")]
-+#[repr(C, align = 4)]
-+#[repr(C, align(4))]
-+```
+```rust,ignore
+#[attr]
+#[attr(true)]
+#[attr(ident)]
+#[attr(ident, 100, true, "true", ident = 100, ident = "hello", ident(100))]
+#[attr(100)]
+#[attr(enabled = true)]
+#[enabled(true)]
+#[attr("hello")]
+#[repr(C, align = 4)]
+#[repr(C, align(4))]
+```