File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
crates/ra_hir/src/nameres Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -497,7 +497,7 @@ where
497
497
498
498
fn collect_module ( & mut self , module : & raw:: ModuleData ) {
499
499
match module {
500
- // inline module, just recursive
500
+ // inline module, just recurse
501
501
raw:: ModuleData :: Definition { name, items, ast_id } => {
502
502
let module_id =
503
503
self . push_child_module ( name. clone ( ) , ast_id. with_file_id ( self . file_id ) , None ) ;
@@ -509,7 +509,7 @@ where
509
509
}
510
510
. collect ( & * items) ;
511
511
}
512
- // out of line module, resolve, parse and recursive
512
+ // out of line module, resolve, parse and recurse
513
513
raw:: ModuleData :: Declaration { name, ast_id, attr_path } => {
514
514
let ast_id = ast_id. with_file_id ( self . file_id ) ;
515
515
let is_root = self . def_collector . def_map . modules [ self . module_id ] . parent . is_none ( ) ;
You can’t perform that action at this time.
0 commit comments