diff options
author | David Majnemer <david.majnemer@gmail.com> | 2013-08-13 09:17:25 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2013-08-13 09:17:25 +0000 |
commit | e9cab2faa6226b5aeeb4542f54c80f8cb18780eb (patch) | |
tree | 340a92c8ed1c014b09b52c3483beb3372f9a74fd | |
parent | 29a98cfca07228406a000967b8e9291869b07e1f (diff) | |
download | bcm5719-llvm-e9cab2faa6226b5aeeb4542f54c80f8cb18780eb.tar.gz bcm5719-llvm-e9cab2faa6226b5aeeb4542f54c80f8cb18780eb.zip |
Fix typo in comment.
Thanks Kim Gräsman!
llvm-svn: 188257
-rw-r--r-- | clang/lib/AST/MicrosoftMangle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/MicrosoftMangle.cpp b/clang/lib/AST/MicrosoftMangle.cpp index 9f4df3a4548..ac18db0dff3 100644 --- a/clang/lib/AST/MicrosoftMangle.cpp +++ b/clang/lib/AST/MicrosoftMangle.cpp @@ -870,7 +870,7 @@ MicrosoftCXXNameMangler::mangleExpression(const Expr *E) { std::string Name = "_GUID_" + Uuid.lower(); std::replace(Name.begin(), Name.end(), '-', '_'); - // If we had to peak through an address-of operator, treat this like we are + // If we had to peek through an address-of operator, treat this like we are // dealing with a pointer type. Otherwise, treat it like a const reference. // // N.B. This matches up with the handling of TemplateArgument::Declaration |