From 0e919c14343ac784fb85fb252b5da667342d0356 Mon Sep 17 00:00:00 2001 From: Polina Cherkasova Date: Thu, 19 Oct 2023 12:48:52 -0700 Subject: [PATCH] Minor language update. (#5261) How about adding 'for example' to create room for other natural cases? --- src/effective-dart/design.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/effective-dart/design.md b/src/effective-dart/design.md index eebd40f51d..6d8a11fc29 100644 --- a/src/effective-dart/design.md +++ b/src/effective-dart/design.md @@ -619,8 +619,8 @@ class _Favorites { In idiomatic Dart, classes define *kinds of objects*. A type that is never instantiated is a code smell. -However, this isn't a hard rule. With constants and enum-like types, it may be -natural to group them in a class. +However, this isn't a hard rule. For example, with constants and enum-like types, +it may be natural to group them in a class. {:.good}