diff options
author | Matt Beaumont-Gay <matthewbg@google.com> | 2013-02-25 18:11:18 +0000 |
---|---|---|
committer | Matt Beaumont-Gay <matthewbg@google.com> | 2013-02-25 18:11:18 +0000 |
commit | 0e760da5fc63fd4d3e16d2917fcca848b932d35b (patch) | |
tree | 20de2a4531ee5f01adb33aa8d21c7f4a5ae6849e /llvm/utils/unittest/googletest | |
parent | b4548299814ef9d90e2ae99bb628c82c944234ea (diff) | |
download | bcm5719-llvm-0e760da5fc63fd4d3e16d2917fcca848b932d35b.tar.gz bcm5719-llvm-0e760da5fc63fd4d3e16d2917fcca848b932d35b.zip |
'Hexadecimal' has two 'a's and only one 'i'.
llvm-svn: 176031
Diffstat (limited to 'llvm/utils/unittest/googletest')
-rw-r--r-- | llvm/utils/unittest/googletest/gtest-printers.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/utils/unittest/googletest/gtest-printers.cc b/llvm/utils/unittest/googletest/gtest-printers.cc index ed63c7b3b91..205a39425f0 100644 --- a/llvm/utils/unittest/googletest/gtest-printers.cc +++ b/llvm/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)) { |