diff options
author | Aleksey Kladov <[email protected]> | 2019-12-12 16:17:57 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-12-12 16:17:57 +0000 |
commit | 332f2205b092744265914a4064b61161ba368df3 (patch) | |
tree | 6bbc6a58de0d12184b3dcebfd040f655c302e5ed | |
parent | 125559c14b0e85bb69e9b2759d7ecd33a73ea443 (diff) |
Correct obsolete comment
-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>, |