From: Erich Keane Date: Wed, 7 Feb 2018 00:19:58 +0000 (+0000) Subject: [NFC] Correct a typo'ed comment and reworded, since it is awkward. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fce759b49d29ee0b5e3a3c99937a74f4fdfd1593;p=clang [NFC] Correct a typo'ed comment and reworded, since it is awkward. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@324430 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Driver/Driver.cpp b/lib/Driver/Driver.cpp index a5aed299e3..9ae5a60fa6 100644 --- a/lib/Driver/Driver.cpp +++ b/lib/Driver/Driver.cpp @@ -133,7 +133,7 @@ void Driver::ParseDriverMode(StringRef ProgramName, setDriverModeFromOption(ClangNameParts.DriverMode); for (const char *ArgPtr : Args) { - // Ingore nullptrs, they are response file's EOL markers + // Ignore nullptrs, they are the response file's EOL markers. if (ArgPtr == nullptr) continue; const StringRef Arg = ArgPtr;