]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/impl-trait/multiple-lifetimes/ordinary-bounds-pick-original.rs
more nits + typos
[rust.git] / src / test / ui / impl-trait / multiple-lifetimes / ordinary-bounds-pick-original.rs
index 21979b001797e9aa8b3a6e831642b8d19d0c3b8a..43f8bd71e4108c0ac0f9546f3fe2e225a17001c6 100644 (file)
@@ -9,7 +9,7 @@ trait Trait<'a, 'b> { }
 impl<T> Trait<'_, '_> for T { }
 
 // Here we wind up selecting `'a` and `'b` in the hidden type because
-// those are the types that appear inth e original values.
+// those are the types that appear in the original values.
 
 fn upper_bounds<'a, 'b>(a: &'a u8, b: &'b u8) -> impl Trait<'a, 'b> {
     // In this simple case, you have a hidden type `(&'0 u8, &'1 u8)` and constraints like