Skip to content

Commit

Permalink
Fix typo in declaration of do_something
Browse files Browse the repository at this point in the history
  • Loading branch information
nikomatsakis committed Jan 27, 2015
1 parent 85793a6 commit 77c090b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion text/0000-variance.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ fn approx_context<'long,'short>(t: &Context<'long>, data: &'short Data)
do_something(u, data)
}

fn do_something<'x>(t: Context<'x>, data: &'x Data) {
fn do_something<'x>(t: &Context<'x>, data: &'x Data) {
...
}
```
Expand Down

0 comments on commit 77c090b

Please sign in to comment.