Merge pull request #37 from rphmeier/master

Typo fix: parenthesis -> parentheses
This commit is contained in:
Steve Klabnik 2015-12-22 11:20:59 -05:00
commit 3612ad7f40

View File

@ -18,7 +18,7 @@ fn another_function() {
Rust code uses `snake_case` as a style for function names: all lower case, with underscores separating words.
(It also uses them for variable names, too.)
We can can call any function weve defined by using its name and some parenthesis:
We can can call any function weve defined by using its name and some parentheses:
```rust
fn main() {