Fix typo in syntax.md

This commit is contained in:
Brian Anderson 2011-11-01 12:39:47 -07:00
parent 61b604580b
commit 4a2d277bbf
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ allows you to omit the parentheses around the condition in `if`,
`while`, and similar constructs. This will save you two characters
every time. As a bonus, you no longer have to spend any mental energy
on deciding whether you need to add braces or not, or on adding them
after the fact when a adding a statement to an `if` branch.
after the fact when adding a statement to an `if` branch.
Accounting for these differences, the surface syntax of Rust
statements and expressions is C-like. Function calls are written