diff options
Diffstat (limited to 'crates/ra_hir_def/src')
-rw-r--r-- | crates/ra_hir_def/src/path.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/ra_hir_def/src/path.rs b/crates/ra_hir_def/src/path.rs index ddb53ee7c..ec9d13e82 100644 --- a/crates/ra_hir_def/src/path.rs +++ b/crates/ra_hir_def/src/path.rs | |||
@@ -29,8 +29,7 @@ pub struct PathSegment { | |||
29 | } | 29 | } |
30 | 30 | ||
31 | /// Generic arguments to a path segment (e.g. the `i32` in `Option<i32>`). This | 31 | /// Generic arguments to a path segment (e.g. the `i32` in `Option<i32>`). This |
32 | /// can (in the future) also include bindings of associated types, like in | 32 | /// also includes bindings of associated types, like in `Iterator<Item = Foo>`. |
33 | /// `Iterator<Item = Foo>`. | ||
34 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 33 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
35 | pub struct GenericArgs { | 34 | pub struct GenericArgs { |
36 | pub args: Vec<GenericArg>, | 35 | pub args: Vec<GenericArg>, |