summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarol (Nichols || Goulding) <carol.nichols@gmail.com>2016-05-31 14:10:12 -0400
committerCarol (Nichols || Goulding) <carol.nichols@gmail.com>2016-05-31 14:10:12 -0400
commit72ec3211a08330490d9e532f6dd1427bafe883e1 (patch)
tree4e642c0068130d3d6121914144af461bbcace874
parenta046286bf8e4d0dd15d7cb755902979b746a1167 (diff)
parente48efe3c34785ff8cead35e78e8c064e153cd403 (diff)
Merge pull request #44 from Zajn/zajn/update-hint-text
Update hint to reflect new variable binding name
-rw-r--r--strings/strings2.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/strings2.rs b/strings/strings2.rs
index df0d46a..fe0bdc7 100644
--- a/strings/strings2.rs
+++ b/strings/strings2.rs
@@ -36,6 +36,6 @@ fn is_a_color_word(attempt: &str) -> bool {
-// Yes, it would be really easy to fix this by just changing the value bound to `guess1` to be a
+// Yes, it would be really easy to fix this by just changing the value bound to `word` to be a
// string slice instead of a `String`, wouldn't it?? There is a way to add one character to line
// 5, though, that will coerce the `String` into a string slice.