Skip to content

Commit 77c090b

Browse files
committed
Fix typo in declaration of do_something
1 parent 85793a6 commit 77c090b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

text/0000-variance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ fn approx_context<'long,'short>(t: &Context<'long>, data: &'short Data)
102102
do_something(u, data)
103103
}
104104

105-
fn do_something<'x>(t: Context<'x>, data: &'x Data) {
105+
fn do_something<'x>(t: &Context<'x>, data: &'x Data) {
106106
...
107107
}
108108
```

0 commit comments

Comments
 (0)