Skip to content

Commit e8e18ae

Browse files
committed
Tweak wording
1 parent 4fd778b commit e8e18ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

surveys/micro/2025-09-variadic-use-cases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ The following section refers to "non-linear" variadic generics.
106106

107107
All the examples so far have been linear variadics.
108108

109-
"Non-linear" variadics generics mean things like filtering a tuple of types to only keeps those that implement a trait, or reversing a list of types, or finding the first type in a list that implements a trait.
109+
"Non-linear" variadics generics mean things like filtering a tuple of types to only keeps those that implement a trait, or reversing a tuple of types, or finding the first type in a tuple that implements a trait.
110110

111111
```rust
112112
fn get_children<...Ts>(parents: (...Ts)) -> (for <T of ...Ts where T: Parent> T::Child) {

0 commit comments

Comments
 (0)