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 | 50e75bfc29269def44981ab5f109334d95f55007 (patch) | |
tree | 5169548b0725715304c3186ea3f5f1ebe500ad2b /utils/unittest | |
parent | fc7695a653323071ec141aee994e4188592ad1f5 (diff) | |
download | external_llvm-50e75bfc29269def44981ab5f109334d95f55007.zip external_llvm-50e75bfc29269def44981ab5f109334d95f55007.tar.gz external_llvm-50e75bfc29269def44981ab5f109334d95f55007.tar.bz2 |
'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.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/unittest/googletest/gtest-printers.cc b/utils/unittest/googletest/gtest-printers.cc index ed63c7b..205a394 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)) { |