1
Fork 0

Fix for misspelled comments.

The spelling corrections were made in both documentation comments and
regular comments.
This commit is contained in:
Joseph Crail 2015-02-04 23:00:02 -05:00
parent ba2f13ef06
commit dc2e444e50
27 changed files with 36 additions and 36 deletions

View file

@ -560,7 +560,7 @@ fn filtered_float_lit(data: token::InternedString, suffix: Option<&str>,
}
pub fn float_lit(s: &str, suffix: Option<&str>, sd: &SpanHandler, sp: Span) -> ast::Lit_ {
debug!("float_lit: {:?}, {:?}", s, suffix);
// FIXME #2252: bounds checking float literals is defered until trans
// FIXME #2252: bounds checking float literals is deferred until trans
let s = s.chars().filter(|&c| c != '_').collect::<String>();
let data = token::intern_and_get_ident(&*s);
filtered_float_lit(data, suffix, sd, sp)