ra_hir_def: fix typo

This commit is contained in:
veetaha 2020-03-22 19:38:55 +02:00
parent bfb6e3fd83
commit dc1fbef985

View File

@ -95,7 +95,7 @@ pub struct Path {
/// Note that paths like `<Type as Trait>::foo` are desugard to `Trait::<Self=Type>::foo`.
type_anchor: Option<Box<TypeRef>>,
mod_path: ModPath,
/// Invariant: the same len as self.path.segments
/// Invariant: the same len as `self.mod_path.segments`
generic_args: Vec<Option<Arc<GenericArgs>>>,
}