diff options
Diffstat (limited to 'src/libsyntax/ast.rs')
| -rw-r--r-- | src/libsyntax/ast.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index 46e3e20f58e..b590a4a6286 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -19,7 +19,7 @@ pub use util::parser::ExprPrecedence; use syntax_pos::{Span, DUMMY_SP}; use codemap::{respan, Spanned}; -use abi::Abi; +use rustc_target::spec::abi::Abi; use ext::hygiene::{Mark, SyntaxContext}; use print::pprust; use ptr::P; @@ -1255,8 +1255,8 @@ pub enum StrStyle { Cooked, /// A raw string, like `r##"foo"##` /// - /// The uint is the number of `#` symbols used - Raw(usize) + /// The value is the number of `#` symbols used. + Raw(u16) } /// A literal |
