Skip to content

Commit 0e2732c

Browse files
authored
Merge branch 'main' into feat/glossary-tooltip
2 parents 16e7a94 + da5cb77 commit 0e2732c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/effective-dart/design.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ intend, and they may break your code without realizing it.
660660
### DO use class modifiers to control if your class can be an interface
661661

662662
When designing a library, use class modifiers like `final`, `base`, or `sealed` to enforce intended
663-
usage. For example, use `final class C {}` or `base class D{}` to prevent
663+
usage. For example, use `final class C {}` or `base class D {}` to prevent
664664
implementation outside the current library.
665665
While it's ideal for all libraries to use these modifiers to enforce design intent,
666666
developers may still encounter cases where they aren't applied. In such cases, be mindful of

0 commit comments

Comments
 (0)