From 8730203bff33b15f32d0a45e4454051e4a38b994 Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Mon, 18 Jul 2016 22:27:47 -0400 Subject: [PATCH] "Long enough" could be ambiguous in this case We get to use underscores in variable bindings once we have a year's experience with them or? --- src/ch04-04-how-functions-work.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ch04-04-how-functions-work.md b/src/ch04-04-how-functions-work.md index 07a9483..aa1af3b 100644 --- a/src/ch04-04-how-functions-work.md +++ b/src/ch04-04-how-functions-work.md @@ -8,8 +8,8 @@ declare new functions. Rust code uses *snake case* as the conventional style for function names. In snake case, all letters are lower case, and there are underscores separating words. (Rust also uses snake case for the names of variable bindings; we just -haven't used any variable bindings long enough to need underscores yet). Here's -a program containing an example function definition: +haven't used any variable bindings with enough letters to need underscores +yet). Here's a program containing an example function definition: ```rust fn main() {