Skip to content

Commit 0a18520

Browse files
committed
Fix another ellipsis typo
1 parent f5a6bd5 commit 0a18520

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

text/0000-variadic-generics.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ impl<Head, Tail, F, R> TupleMap<F> for (Head, ...Tail)
123123
let (head, ...tail) = self;
124124
let mapped_head = f(head);
125125
let mapped_tail = tail.map(f);
126-
(mapped_head, mapped_tail...)
126+
(mapped_head, ...mapped_tail)
127127
}
128128
}
129129
```

0 commit comments

Comments
 (0)