From 31a669778e03c7aed18d9c68d99d064c0cd10763 Mon Sep 17 00:00:00 2001 From: Michele Sessa Date: Mon, 11 Sep 2023 11:52:29 +0100 Subject: [PATCH] docs(mini-framework): fix typo in subject --- subjects/mini-framework/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/mini-framework/README.md b/subjects/mini-framework/README.md index 9f77788bcf..4c681c8217 100644 --- a/subjects/mini-framework/README.md +++ b/subjects/mini-framework/README.md @@ -104,7 +104,7 @@ Routing in this case refers to the synchronization of the state of the app with #### State Management The state of an app can be seen as the outcome of all of the actions that the user has taken since the page loaded. In other words, if a user clicks on a button to execute an action, the state should then change.\ -What you will need to do is to implement a way to handle this state. Remember that multiple pages can need to interact with the same state, so you need to find a way to let the state be reachable at every time. +What you will need to do is to implement a way to handle this state. Remember that multiple pages may need to interact with the same state, so you need to find a way to let the state be reachable at every time. ---