about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAleksey Kladov <aleksey.kladov@gmail.com>2019-12-12 17:17:57 +0100
committerAleksey Kladov <aleksey.kladov@gmail.com>2019-12-12 17:17:57 +0100
commit332f2205b092744265914a4064b61161ba368df3 (patch)
tree6bbc6a58de0d12184b3dcebfd040f655c302e5ed
parent125559c14b0e85bb69e9b2759d7ecd33a73ea443 (diff)
downloadrust-332f2205b092744265914a4064b61161ba368df3.tar.gz
rust-332f2205b092744265914a4064b61161ba368df3.zip
Correct obsolete comment
-rw-r--r--crates/ra_hir_def/src/path.rs3
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 ddb53ee7cc2..ec9d13e8270 100644
--- a/crates/ra_hir_def/src/path.rs
+++ b/crates/ra_hir_def/src/path.rs
@@ -29,8 +29,7 @@ pub struct PathSegment {
 }
 
 /// Generic arguments to a path segment (e.g. the `i32` in `Option<i32>`). This
-/// can (in the future) also include bindings of associated types, like in
-/// `Iterator<Item = Foo>`.
+/// also includes bindings of associated types, like in `Iterator<Item = Foo>`.
 #[derive(Debug, Clone, PartialEq, Eq, Hash)]
 pub struct GenericArgs {
     pub args: Vec<GenericArg>,