Skip to content

Commit

Permalink
fix typo (rust-lang#1107)
Browse files Browse the repository at this point in the history
  • Loading branch information
WaffleLapkin authored Apr 9, 2021
1 parent 83b81fd commit 2c2f61a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/method-lookup.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ that defines it with `&self` for the type `Rc<U>` as well as a method
on the type `Box` that defines `Foo` but with `&mut self`. Then we
might have two candidates:
```text
&Rc<Box<[T; 3]>> from the impl of `Foo` for `Rc<U>` where `U=Box<T; 3]>
&Rc<Box<[T; 3]>> from the impl of `Foo` for `Rc<U>` where `U=Box<[T; 3]>
&mut Box<[T; 3]>> from the inherent impl on `Box<U>` where `U=[T; 3]`
```

Expand Down

0 comments on commit 2c2f61a

Please sign in to comment.