chore(errors1): use is_empty()
instead of len() > 0
more idiomatic according to clippy
This commit is contained in:
parent
b71feed824
commit
582320aded
|
@ -8,11 +8,11 @@
|
|||
// I AM NOT DONE
|
||||
|
||||
pub fn generate_nametag_text(name: String) -> Option<String> {
|
||||
if name.len() > 0 {
|
||||
Some(format!("Hi! My name is {}", name))
|
||||
} else {
|
||||
if name.is_empty() {
|
||||
// Empty names aren't allowed.
|
||||
None
|
||||
} else {
|
||||
Some(format!("Hi! My name is {}", name))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue