]> git.lizzy.rs Git - rust.git/blobdiff - src/libproc_macro/bridge/scoped_cell.rs
Various minor/cosmetic improvements to code
[rust.git] / src / libproc_macro / bridge / scoped_cell.rs
index 51d1fece79b92a4926e741872c55479091aae486..c86d5fc309a39d491087c1a1acf5feee0c343ce1 100644 (file)
@@ -19,7 +19,7 @@ pub trait ApplyL<'a> {
     type Out;
 }
 
-/// Type lambda taking a lifetime, i.e. `Lifetime -> Type`.
+/// Type lambda taking a lifetime, i.e., `Lifetime -> Type`.
 pub trait LambdaL: for<'a> ApplyL<'a> {}
 
 impl<T: for<'a> ApplyL<'a>> LambdaL for T {}