@@ -396,7 +396,7 @@ getNormalInvocationArguments(std::vector<std::string> &invocationArgStrs,
396
396
invocationArgStrs.push_back (" -Xclang" );
397
397
invocationArgStrs.push_back (" -nostdsysteminc" );
398
398
} else {
399
- // On Darwin, clang uses -isysroot to specify the include
399
+ // On Darwin, Clang uses -isysroot to specify the include
400
400
// system root. On other targets, it seems to use --sysroot.
401
401
if (triple.isOSDarwin ()) {
402
402
invocationArgStrs.push_back (" -isysroot" );
@@ -745,7 +745,7 @@ bool ClangImporter::Implementation::importHeader(
745
745
pp.EndSourceFile ();
746
746
bumpGeneration ();
747
747
748
- // Wrap all clang imports under a swift import decl.
748
+ // Wrap all Clang imports under a Swift import decl.
749
749
for (auto &Import : BridgeHeaderTopLevelImports) {
750
750
if (auto *ClangImport = Import.dyn_cast <clang::ImportDecl*>()) {
751
751
Import = createImportDecl (SwiftContext, adapter, ClangImport, {});
@@ -2165,7 +2165,7 @@ void ClangImporter::lookupValue(Identifier name, VisibleDeclConsumer &consumer){
2165
2165
2166
2166
// If we *still* haven't found anything, try looking for '<name>Ref'.
2167
2167
// Eventually, this should be optimized by recognizing this case when
2168
- // generating the clang module.
2168
+ // generating the Clang module.
2169
2169
if (!FoundAny && clangIDToLookup) {
2170
2170
llvm::SmallString<128 > buffer;
2171
2171
buffer += clangIDToLookup->getName ();
0 commit comments