diff options
author | Hiroshi Inoue <inouehrs@jp.ibm.com> | 2017-07-11 06:04:59 +0000 |
---|---|---|
committer | Hiroshi Inoue <inouehrs@jp.ibm.com> | 2017-07-11 06:04:59 +0000 |
commit | 0ca79dcf4b140bc94b277e654b60301bc51d5095 (patch) | |
tree | fbe306be5973a0a85b0045678c26e2166599eca8 /llvm/unittests/Support/ErrorTest.cpp | |
parent | 01f0c8a8c466b11a835745397c82a3bb1ccb0945 (diff) | |
download | llvm-0ca79dcf4b140bc94b277e654b60301bc51d5095.zip llvm-0ca79dcf4b140bc94b277e654b60301bc51d5095.tar.gz llvm-0ca79dcf4b140bc94b277e654b60301bc51d5095.tar.bz2 |
fix typos in comments; NFC
llvm-svn: 307626
Diffstat (limited to 'llvm/unittests/Support/ErrorTest.cpp')
-rw-r--r-- | llvm/unittests/Support/ErrorTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/Support/ErrorTest.cpp b/llvm/unittests/Support/ErrorTest.cpp index 299fc50..a762cf0 100644 --- a/llvm/unittests/Support/ErrorTest.cpp +++ b/llvm/unittests/Support/ErrorTest.cpp @@ -360,7 +360,7 @@ TEST(Error, CheckJoinErrors) { [&](const CustomError &CE) { Sum += CE.getInfo(); }); - EXPECT_EQ(Sum, 28) << "Failed to correctly concatenate erorr lists."; + EXPECT_EQ(Sum, 28) << "Failed to correctly concatenate error lists."; } } |