Skip to content

Commit

Permalink
Fixed minor typo from "it can simply code" to "it can simplify code" (#…
Browse files Browse the repository at this point in the history
…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.
  • Loading branch information
uchronia authored Feb 3, 2025
1 parent 65e99ca commit 013397d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/app-architecture/concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ If the data can be modified in the app,
the SSOT class should be the only class that can do so.

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

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

0 comments on commit 013397d

Please sign in to comment.