Skip to content

Commit 2809e30

Browse files
functions.md: replace argument with parameter
1 parent 52fc43a commit 2809e30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/items/functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ fn answer_to_life_the_universe_and_everything() -> i32 {
6363
## Function parameters
6464

6565
As with `let` bindings, function parameters are irrefutable [patterns], so any
66-
pattern that is valid in a let binding is also valid as an argument:
66+
pattern that is valid in a let binding is also valid as a parameter:
6767

6868
```rust
6969
fn first((value, _): (i32, i32)) -> i32 { value }

0 commit comments

Comments
 (0)