summaryrefslogtreecommitdiff
path: root/utils/unittest
diff options
context:
space:
mode:
authorMatt Beaumont-Gay <matthewbg@google.com>2013-02-25 18:11:18 +0000
committerMatt Beaumont-Gay <matthewbg@google.com>2013-02-25 18:11:18 +0000
commit50e75bfc29269def44981ab5f109334d95f55007 (patch)
tree5169548b0725715304c3186ea3f5f1ebe500ad2b /utils/unittest
parentfc7695a653323071ec141aee994e4188592ad1f5 (diff)
downloadllvm-50e75bfc29269def44981ab5f109334d95f55007.tar.gz
llvm-50e75bfc29269def44981ab5f109334d95f55007.tar.bz2
llvm-50e75bfc29269def44981ab5f109334d95f55007.tar.xz
'Hexadecimal' has two 'a's and only one 'i'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176031 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/unittest')
-rw-r--r--utils/unittest/googletest/gtest-printers.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/unittest/googletest/gtest-printers.cc b/utils/unittest/googletest/gtest-printers.cc
index ed63c7b3b9..205a39425f 100644
--- a/utils/unittest/googletest/gtest-printers.cc
+++ b/utils/unittest/googletest/gtest-printers.cc
@@ -127,7 +127,7 @@ namespace internal {
// Depending on the value of a char (or wchar_t), we print it in one
// of three formats:
// - as is if it's a printable ASCII (e.g. 'a', '2', ' '),
-// - as a hexidecimal escape sequence (e.g. '\x7F'), or
+// - as a hexadecimal escape sequence (e.g. '\x7F'), or
// - as a special escape sequence (e.g. '\r', '\n').
enum CharFormat {
kAsIs,
@@ -230,7 +230,7 @@ void PrintCharAndCodeTo(Char c, ostream* os) {
return;
*os << " (" << String::Format("%d", c).c_str();
- // For more convenience, we print c's code again in hexidecimal,
+ // For more convenience, we print c's code again in hexadecimal,
// unless c was already printed in the form '\x##' or the code is in
// [1, 9].
if (format == kHexEscape || (1 <= c && c <= 9)) {