Skip to content

Commit 4f84f2d

Browse files
authored
Merge pull request #1142 from hkhere/words_01
functions.md: replace `argument` with `parameter`
2 parents 325ade6 + d005eca commit 4f84f2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/items/functions.md

+1-1
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)