Clarify which curly is being referred to

Thanks @chris-morgan
This commit is contained in:
Steve Klabnik 2014-06-26 15:41:46 -04:00
parent efc2d4a476
commit 8cd906811a
1 changed files with 2 additions and 2 deletions

View File

@ -181,8 +181,8 @@ entirely. We'll get to it later.
You'll also note that the function is wrapped in curly braces (`{` and `}`).
Rust requires these around all function bodies. It is also considered good
style to put the curly brace on the same line as the function declaration, with
one space in between.
style to put the opening curly brace on the same line as the function
declaration, with one space in between.
Next up is this line: