From e8cb3fe26ab5592b80fb6e4b641e701775d36dae Mon Sep 17 00:00:00 2001 From: jerzybrzoska <51721153+jerzybrzoska@users.noreply.github.com> Date: Sun, 9 May 2021 19:43:43 +0200 Subject: [PATCH] Correcting capitalization of 'the' For the reference, [there is an topic on ESE](https://english.stackexchange.com/a/84293/349354) about the capitalization of 'the'. --- book/architecture/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/book/architecture/README.md b/book/architecture/README.md index 356404b6..a536912e 100644 --- a/book/architecture/README.md +++ b/book/architecture/README.md @@ -4,7 +4,7 @@ The Elm Architecture is a pattern for architecting interactive programs, like we This architecture seems to emerge naturally in Elm. Rather than someone inventing it, early Elm programmers kept discovering the same basic patterns in their code. It was kind of spooky to see people ending up with well-architected code without planning ahead! -So The Elm Architecture is easy in Elm, but it is useful in any front-end project. In fact, projects like Redux have been inspired by The Elm Architecture, so you may have already seen derivatives of this pattern. Point is, even if you ultimately cannot use Elm at work yet, you will get a lot out of using Elm and internalizing this pattern. +So the Elm Architecture is easy in Elm, but it is useful in any front-end project. In fact, projects like Redux have been inspired by the Elm Architecture, so you may have already seen derivatives of this pattern. Point is, even if you ultimately cannot use Elm at work yet, you will get a lot out of using Elm and internalizing this pattern. ## The Basic Pattern @@ -21,7 +21,7 @@ What happens within the Elm program though? It always breaks into three parts: * **View** — a way to turn your state into HTML * **Update** — a way to update your state based on messages -These three concepts are the core of **The Elm Architecture**. +These three concepts are the core of **the Elm Architecture**. The next few examples are going to show how to use this pattern for user input, like buttons and text fields. It will make this much more concrete!