Apply suggestions from code review

Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
This commit is contained in:
Igor Aleksanov 2020-10-05 19:34:23 +03:00
parent 9ea57cac0e
commit f2c91fc5a8
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ enum DetectedCase {
fn detect_case(ident: &str) -> DetectedCase {
let trimmed_ident = ident.trim_matches('_');
let first_lowercase =
trimmed_ident.chars().next().map(|chr| chr.is_ascii_lowercase()).unwrap_or(false);
trimmed_ident.starts_with(|chr| chr.is_ascii_lowercase());
let mut has_lowercase = first_lowercase;
let mut has_uppercase = false;
let mut has_underscore = false;
@ -102,7 +102,7 @@ pub fn to_camel_case(ident: &str) -> Option<String> {
}
/// Converts an identifier to a lower_snake_case form.
/// Returns `None` if the string is already is lower_snake_case.
/// Returns `None` if the string is already in lower_snake_case.
pub fn to_lower_snake_case(ident: &str) -> Option<String> {
// First, assume that it's UPPER_SNAKE_CASE.
match detect_case(ident) {

View File

@ -35,7 +35,7 @@ pub fn to_lower_snake_case(s: &str) -> String {
// `&& prev` is required to not insert `_` before the first symbol.
if c.is_ascii_uppercase() && prev {
// This check is required to not translate `Weird_Case` into `weird__case`.
if buf.chars().last() != Some('_') {
if !buf.ends_with('_') {
buf.push('_')
}
}