Improve camelcase suggestion

This commit is contained in:
York Xiang 2015-03-14 13:40:33 +08:00
parent 79dd393a4f
commit 60aa751620
2 changed files with 4 additions and 1 deletions

View file

@ -811,7 +811,7 @@ impl NonCamelCaseTypes {
if i == 0 {
c.to_uppercase().collect::<String>()
} else {
c.to_string()
c.to_lowercase().collect()
}
)).collect::<Vec<_>>().concat()
}

View file

@ -11,6 +11,9 @@
#![forbid(non_camel_case_types)]
#![allow(dead_code)]
struct ONE_TWO_THREE;
//~^ ERROR type `ONE_TWO_THREE` should have a camel case name such as `OneTwoThree`
struct foo { //~ ERROR type `foo` should have a camel case name such as `Foo`
bar: isize,
}