@@ -347,7 +347,7 @@ class ASTContext final {
347347 // / Cache of module names that fail the 'canImport' test in this context.
348348 mutable llvm::SmallPtrSet<Identifier, 8 > FailedModuleImportNames;
349349
350- // / Mapping between aliases and underlying names of modules imported or referenced modules.
350+ // / Mapping between aliases and real (physical) names of imported or referenced modules.
351351 mutable llvm::DenseMap<Identifier, Identifier> ModuleAliasMap;
352352
353353 // / Retrieve the allocator for the given arena.
@@ -474,13 +474,13 @@ class ASTContext final {
474474 // / specified string.
475475 Identifier getIdentifier (StringRef Str) const ;
476476
477- // / Convert a given alias map to a map of Identifiers between module aliases and underlying names.
477+ // / Convert a given alias map to a map of Identifiers between module aliases and their actual names.
478478 // / For example, if '-module-alias A=X -module-alias B=Y' input is passed in, the aliases A and B are
479479 // / the names of the imported or referenced modules in source files in the main module, and X and Y
480- // / are the underlying (physical) module names on disk.
480+ // / are the real (physical) module names on disk.
481481 void setModuleAliases (const llvm::StringMap<StringRef> &aliasMap);
482482
483- // / Retrieve the underlying name given an alias name key.
483+ // / Retrieve the actual module name given a module alias name key.
484484 Identifier lookupModuleAlias (Identifier key) const ;
485485
486486 // / Decide how to interpret two precedence groups.
0 commit comments