]> git.lizzy.rs Git - rust.git/commitdiff
doc comment rewording
authorking6cong <king6cong@gmail.com>
Tue, 24 Jan 2017 08:42:00 +0000 (16:42 +0800)
committerking6cong <king6cong@gmail.com>
Tue, 24 Jan 2017 08:42:17 +0000 (16:42 +0800)
src/librustc/hir/mod.rs

index b631d67e4736571d8097b309ed2d0efe90993543..093b3346877d90e93578aca95bab62f0f1dd6309 100644 (file)
@@ -1008,7 +1008,7 @@ pub enum QPath {
     ///
     /// UFCS source paths can desugar into this, with `Vec::new` turning into
     /// `<Vec>::new`, and `T::X::Y::method` into `<<<T>::X>::Y>::method`,
-    /// the `X` and `Y` nodes being each a `TyPath(QPath::TypeRelative(..))`.
+    /// the `X` and `Y` nodes each being a `TyPath(QPath::TypeRelative(..))`.
     TypeRelative(P<Ty>, P<PathSegment>)
 }