From 5d434e17535d518f1143d6d51a6f1db832d65d2b Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Thu, 23 Jul 2020 22:39:54 -0400 Subject: [PATCH] Fix a typo in the basics tutorial --- tutorials/basics/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/basics/README.md b/tutorials/basics/README.md index eea88e1..6d76d11 100644 --- a/tutorials/basics/README.md +++ b/tutorials/basics/README.md @@ -80,7 +80,7 @@ translates to "no command." ## The Update Function Next we'll define the update function. The update function is called when -"things happen." It's job is to look at what has happened and return an updated +"things happen." Its job is to look at what has happened and return an updated model in response to whatever happened. It can also return a `Cmd` and make more things happen, but for now don't worry about that part.