]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/impl-trait/multiple-lifetimes/ordinary-bounds-pick-original-existential.rs
more nits + typos
[rust.git] / src / test / ui / impl-trait / multiple-lifetimes / ordinary-bounds-pick-original-existential.rs
index a1ec89e8fbd05cdc79593a4746d7c52c63d4b227..a103e21e047e5ec43696f6bb66f103df6f8f8b9d 100644 (file)
@@ -10,7 +10,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.
 
 existential type Foo<'a, 'b>: Trait<'a, 'b>;