diff --git a/clang/lib/Driver/ToolChains/Darwin.cpp b/clang/lib/Driver/ToolChains/Darwin.cpp index d0b3a88845e4c9..f742db7668cd2d 100644 --- a/clang/lib/Driver/ToolChains/Darwin.cpp +++ b/clang/lib/Driver/ToolChains/Darwin.cpp @@ -1273,7 +1273,7 @@ void MachO::AddLinkRuntimeLib(const ArgList &Args, ArgStringList &CmdArgs, StringRef Component, RuntimeLinkOptions Opts, bool IsShared) const { SmallString<64> DarwinLibName = StringRef("libclang_rt."); - // an Darwin the builtins compomnent is not in the library name + // On Darwin the builtins component is not in the library name. if (Component != "builtins") { DarwinLibName += Component; if (!(Opts & RLO_IsEmbedded))