about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJeffrey Seyfried <jeffrey.seyfried@gmail.com>2016-04-18 00:26:18 +0000
committerJeffrey Seyfried <jeffrey.seyfried@gmail.com>2016-04-18 00:26:18 +0000
commit1e134a47d35bb82ccf41338f1c485a479f7807a5 (patch)
tree53de06d4df88d51d7b1976f715026c28158438b2
parentb01e63009fdae72b2bb2ca1892ef55eede8d80dc (diff)
downloadrust-1e134a47d35bb82ccf41338f1c485a479f7807a5.tar.gz
rust-1e134a47d35bb82ccf41338f1c485a479f7807a5.zip
Update outdated comment
-rw-r--r--src/librustc_resolve/resolve_imports.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc_resolve/resolve_imports.rs b/src/librustc_resolve/resolve_imports.rs
index 69536b3f1bb..f335f145a10 100644
--- a/src/librustc_resolve/resolve_imports.rs
+++ b/src/librustc_resolve/resolve_imports.rs
@@ -664,8 +664,8 @@ impl<'a, 'b:'a, 'tcx:'b> ImportResolver<'a, 'b, 'tcx> {
         return Success(());
     }
 
-    // Miscellaneous post-processing, including recording reexports, recording shadowed traits,
-    // reporting conflicts, reporting the PRIVATE_IN_PUBLIC lint, and reporting unresolved imports.
+    // Miscellaneous post-processing, including recording reexports, reporting conflicts,
+    // reporting the PRIVATE_IN_PUBLIC lint, and reporting unresolved imports.
     fn finalize_resolutions_in(&mut self, module: Module<'b>, report_unresolved_imports: bool) {
         // Since import resolution is finished, globs will not define any more names.
         *module.globs.borrow_mut() = Vec::new();