Skip to content

Commit 702798f

Browse files
authored
Fix pseudocode typo in RFC 1951
I believe this `Whatever` was accidentally left out.
1 parent 751ce5d commit 702798f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

text/1951-expand-impl-trait.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ fn foo<T, U>(t: T, u: U) where
222222

223223
fn foo(
224224
t: impl Whatever + SomethingElse,
225-
u: impl,
225+
u: impl Whatever,
226226
)
227227
```
228228

0 commit comments

Comments
 (0)