Skip to content

Commit 013397d

Browse files
authored
Fixed minor typo from "it can simply code" to "it can simplify code" (#11650)
_Description of what this PR is changing or adding, and why:_ _Issues fixed by this PR (if any):_ _PRs or commits this PR depends on (if any):_ ## Presubmit checklist - [x] This PR is marked as draft with an explanation if not meant to land until a future stable release. - [x] This PR doesn’t contain automatically generated corrections (Grammarly or similar). - [x] This PR follows the [Google Developer Documentation Style Guidelines](https://developers.google.com/style) — for example, it doesn’t use _i.e._ or _e.g._, and it avoids _I_ and _we_ (first person). - [x] This PR uses [semantic line breaks](https://github.com/dart-lang/site-shared/blob/main/doc/writing-for-dart-and-flutter-websites.md#semantic-line-breaks) of 80 characters or fewer.
1 parent 65e99ca commit 013397d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/app-architecture/concepts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ If the data can be modified in the app,
6767
the SSOT class should be the only class that can do so.
6868

6969
This can dramatically reduce the number of bugs in your application,
70-
and it can simply code because you'll only ever have one copy of the same data.
70+
and it can simplify code because you'll only ever have one copy of the same data.
7171

7272
Generally, the source of truth for any given type of data in your application is
7373
held in a class called a **Repository**, which is part of the data layer.

0 commit comments

Comments
 (0)