fix: some typos in comment

This commit is contained in:
yutotnh
2022-07-01 18:32:49 +09:00
parent 96f51426e4
commit 2cf9987ce3
4 changed files with 6 additions and 6 deletions

View File

@@ -466,7 +466,7 @@ TEST(DefaultValueOfReferenceTest, IsInitiallyUnset) {
EXPECT_FALSE(DefaultValue<MyNonDefaultConstructible&>::IsSet());
}
// Tests that DefaultValue<T&>::Exists is false initiallly.
// Tests that DefaultValue<T&>::Exists is false initially.
TEST(DefaultValueOfReferenceTest, IsInitiallyNotExisting) {
EXPECT_FALSE(DefaultValue<int&>::Exists());
EXPECT_FALSE(DefaultValue<MyDefaultConstructible&>::Exists());
@@ -807,7 +807,7 @@ TEST(ReturnTest, MoveOnlyResultType) {
"");
}
// Tests that Return(v) is covaraint.
// Tests that Return(v) is covariant.
struct Base {
bool operator==(const Base&) { return true; }