Skip to content

Commit 09e62ba

Browse files
committed
Rollup merge of #31413 - tshepang:improve, r=steveklabnik
2 parents fc6e769 + 69b1d75 commit 09e62ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/doc/reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -984,8 +984,8 @@ fn first((value, _): (i32, i32)) -> i32 { value }
984984
#### Generic functions
985985

986986
A _generic function_ allows one or more _parameterized types_ to appear in its
987-
signature. Each type parameter must be explicitly declared, in an
988-
angle-bracket-enclosed, comma-separated list following the function name.
987+
signature. Each type parameter must be explicitly declared in an
988+
angle-bracket-enclosed and comma-separated list, following the function name.
989989

990990
```rust,ignore
991991
// foo is generic over A and B

0 commit comments

Comments
 (0)