diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2014-06-26 15:41:46 -0400 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2014-06-26 15:41:46 -0400 |
| commit | 8cd906811a1f541772fd526fc61ff2b6ead86f2e (patch) | |
| tree | bed779b777ad873fd359431132902aa7afcd1a49 | |
| parent | efc2d4a476f8c0d4ed0d67bd496187ed76a55172 (diff) | |
| download | rust-8cd906811a1f541772fd526fc61ff2b6ead86f2e.tar.gz rust-8cd906811a1f541772fd526fc61ff2b6ead86f2e.zip | |
Clarify which curly is being referred to
Thanks @chris-morgan
| -rw-r--r-- | src/doc/guide.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/guide.md b/src/doc/guide.md index f7b100d6b05..b3ae6db8061 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -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: |
