Document abbreviation style things (#4996)

We had a long discussion of this, so trying to document what seems to be
the conclusion... and also clean up the exceptions that I could find.

---------

Co-authored-by: Dana Jansens <danakj@orodu.net>
This commit is contained in:
Jon Ross-Perkins
2025-02-27 02:13:17 +00:00
committed by GitHub
co-authored by Dana Jansens
parent 0d2f364f39
commit 467e510d40
20 changed files with 205 additions and 199 deletions
+1 -1
View File
@@ -124,7 +124,7 @@ TYPED_TEST(MapTest, Basic) {
m, MakeKeyValues([](int k) { return k * 100 + 1; }, llvm::seq(1, 512)));
}
TYPED_TEST(MapTest, FactoryAPI) {
TYPED_TEST(MapTest, FactoryApi) {
TypeParam m;
EXPECT_TRUE(m.Insert(1, [] { return 100; }).is_inserted());
ASSERT_TRUE(m.Contains(1));