From d028baa8ca041883ee8d6663238b8675fb3549a3 Mon Sep 17 00:00:00 2001 From: Andrew Kreimer Date: Wed, 11 Sep 2024 19:48:48 +0300 Subject: [PATCH 1/2] docguide: Fix a typo --- docguide/best_practices.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docguide/best_practices.md b/docguide/best_practices.md index d20f31727..946c2555e 100644 --- a/docguide/best_practices.md +++ b/docguide/best_practices.md @@ -136,6 +136,6 @@ to detailed prose: Do not write your own guide to a common Google technology or process. Link to it instead. If the guide doesn't exist or it's badly out of date, submit your -updates to the appriopriate directory or create a package-level +updates to the appropriate directory or create a package-level README.md. **Take ownership and don't be shy**: Other teams will usually welcome your contributions. From c2f40467a50f51a4824d0b5b76bdfb681af5eaba Mon Sep 17 00:00:00 2001 From: Andrew Kreimer Date: Wed, 11 Sep 2024 19:50:13 +0300 Subject: [PATCH 2/2] objcguide: Fix a typo --- objcguide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objcguide.md b/objcguide.md index 65dfb11fe..a37cc8d23 100644 --- a/objcguide.md +++ b/objcguide.md @@ -1180,7 +1180,7 @@ TimeZoneMappingSet *timeZoneMappings = [TimeZoneMappingSet setWithObjects:...]; Use the most descriptive common superclass or protocol available. In the most generic case when nothing else is known, declare the collection to be explicitly -heterogenous using id. +heterogeneous using id. ```objectivec // GOOD: