Skip to content

Commit 657ef2f

Browse files
authored
Update 0377-parameter-ownership-modifiers.md (#1822)
small grammatical change
1 parent bb09d19 commit 657ef2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

proposals/0377-parameter-ownership-modifiers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ let f: (take Foo) -> Void = { a in a.foo() }
112112
let f: (inout Foo) -> Void = { a in a.foo() }
113113
```
114114

115-
Methods can using the `taking` or `borrowing` modifier to indicate that they
115+
Methods can use the `taking` or `borrowing` modifier to indicate that they
116116
take ownership of their `self` parameter, or they borrow it. These modifiers
117117
are mutually exclusive with each other and with the existing `mutating` modifier:
118118

0 commit comments

Comments
 (0)