From 013397d08c44cae713184f8f021f71e34454ee00 Mon Sep 17 00:00:00 2001 From: uchronia <66484893+uchronia@users.noreply.github.com> Date: Mon, 3 Feb 2025 11:37:09 -0800 Subject: [PATCH] Fixed minor typo from "it can simply code" to "it can simplify code" (#11650) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit _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. --- src/content/app-architecture/concepts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/app-architecture/concepts.md b/src/content/app-architecture/concepts.md index 66028ed31e..1f08bcbc5e 100644 --- a/src/content/app-architecture/concepts.md +++ b/src/content/app-architecture/concepts.md @@ -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.