Complete strings section

This commit is contained in:
Paul Czeresko 2019-07-22 09:24:38 -04:00
parent 0d99ecb674
commit 948b711fd1
2 changed files with 2 additions and 2 deletions
exercises/strings

View file

@ -7,7 +7,7 @@ fn main() {
} }
fn current_favorite_color() -> String { fn current_favorite_color() -> String {
"blue" String::from("blue")
} }

View file

@ -3,7 +3,7 @@
fn main() { fn main() {
let word = String::from("green"); // Try not changing this line :) let word = String::from("green"); // Try not changing this line :)
if is_a_color_word(word) { if is_a_color_word(&word) {
println!("That is a color word I know!"); println!("That is a color word I know!");
} else { } else {
println!("That is not a color word I know."); println!("That is not a color word I know.");