diff --git a/src/method-lookup.md b/src/method-lookup.md index 5aafb6abf..433105563 100644 --- a/src/method-lookup.md +++ b/src/method-lookup.md @@ -100,7 +100,7 @@ that defines it with `&self` for the type `Rc` as well as a method on the type `Box` that defines `Foo` but with `&mut self`. Then we might have two candidates: ```text -&Rc> from the impl of `Foo` for `Rc` where `U=Box +&Rc> from the impl of `Foo` for `Rc` where `U=Box<[T; 3]> &mut Box<[T; 3]>> from the inherent impl on `Box` where `U=[T; 3]` ```