about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2016-02-02 00:32:19 -0500
committerSteve Klabnik <steve@steveklabnik.com>2016-02-02 00:32:19 -0500
commitd86c4fb46dfdb580d986bb7e561493554648033c (patch)
tree3a072fcaa7285b739c4284a499d018143b01d701 /src/libsyntax
parent0b8c71379c27de9ddb1ad9a5bec9749f4b98a628 (diff)
parent7aa41a1a86cb721bbb297ef394b91cc9ab027cf7 (diff)
downloadrust-d86c4fb46dfdb580d986bb7e561493554648033c.tar.gz
rust-d86c4fb46dfdb580d986bb7e561493554648033c.zip
Rollup merge of #31342 - reeze:patch-1, r=steveklabnik
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/ast.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs
index e327adfaf89..19bedab9d30 100644
--- a/src/libsyntax/ast.rs
+++ b/src/libsyntax/ast.rs
@@ -70,9 +70,9 @@ pub struct Name(pub u32);
 /// A SyntaxContext represents a chain of macro-expandings
 /// and renamings. Each macro expansion corresponds to
 /// a fresh u32. This u32 is a reference to a table stored
-// in thread-local storage.
-// The special value EMPTY_CTXT is used to indicate an empty
-// syntax context.
+/// in thread-local storage.
+/// The special value EMPTY_CTXT is used to indicate an empty
+/// syntax context.
 #[derive(Clone, Copy, PartialEq, Eq, Hash, Debug, RustcEncodable, RustcDecodable)]
 pub struct SyntaxContext(pub u32);