"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?
This commit is contained in:
Carol (Nichols || Goulding) 2016-07-18 22:27:47 -04:00
parent 1cf14f2baf
commit 8730203bff

View File

@ -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() {