1
Fork 0

Change lint names to plurals

This commit is contained in:
Nick Cameron 2015-03-24 11:23:34 +13:00
parent dc206a91c8
commit e7122a5a09
34 changed files with 49 additions and 49 deletions

View file

@ -2430,7 +2430,7 @@ macro_rules! to_json_impl_i64 {
($($t:ty), +) => (
$(impl ToJson for $t {
fn to_json(&self) -> Json {
#![allow(trivial_numeric_cast)]
#![allow(trivial_numeric_casts)]
Json::I64(*self as i64)
}
})+
@ -2443,7 +2443,7 @@ macro_rules! to_json_impl_u64 {
($($t:ty), +) => (
$(impl ToJson for $t {
fn to_json(&self) -> Json {
#![allow(trivial_numeric_cast)]
#![allow(trivial_numeric_casts)]
Json::U64(*self as u64)
}
})+