From 590499eb3c886bf7f6b3a732816ea263f1777886 Mon Sep 17 00:00:00 2001 From: Erick Tryzelaar Date: Mon, 1 Dec 2014 10:37:00 -0800 Subject: [PATCH] syntax: whitespace cleanup --- src/libsyntax/ast.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index 0c8c17b080bf..4dee6e8d66e2 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -983,7 +983,7 @@ impl LitIntType { #[deriving(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Show)] pub enum Lit_ { LitStr(InternedString, StrStyle), - LitBinary(Rc >), + LitBinary(Rc>), LitByte(u8), LitChar(char), LitInt(u64, LitIntType),