about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2015-01-02 13:15:09 -0800
committerBrian Anderson <banderson@mozilla.com>2015-01-02 13:15:09 -0800
commitb32e0098efdf62df22f2fdb01d1d84dce6eed895 (patch)
treed2fe2a07136d98c4bcc547336d20f6d84439225c /src/libsyntax
parent4b40bc85cbc1d072179c92ce01655db0272aa598 (diff)
parent6465cb85a73fc1f0465d56867d6c3cee71d44b67 (diff)
downloadrust-b32e0098efdf62df22f2fdb01d1d84dce6eed895.tar.gz
rust-b32e0098efdf62df22f2fdb01d1d84dce6eed895.zip
Merge remote-tracking branch 'erickt/rustup'
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/ast.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs
index 12432c8c78f..ef7f737cd5f 100644
--- a/src/libsyntax/ast.rs
+++ b/src/libsyntax/ast.rs
@@ -989,7 +989,7 @@ impl LitIntType {
 #[deriving(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Show)]
 pub enum Lit_ {
     LitStr(InternedString, StrStyle),
-    LitBinary(Rc<Vec<u8> >),
+    LitBinary(Rc<Vec<u8>>),
     LitByte(u8),
     LitChar(char),
     LitInt(u64, LitIntType),