From 01db05566ac89646973be55f373461fa8bbb2d0a Mon Sep 17 00:00:00 2001 From: Andrew Kreimer Date: Wed, 11 Sep 2024 19:50:13 +0300 Subject: [PATCH] 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: