From 37ffccc29ef195a3a150f87b6f17f761e43a7861 Mon Sep 17 00:00:00 2001 From: 7527e <92394355+7527e@users.noreply.github.com> Date: Fri, 27 May 2022 19:38:13 +0530 Subject: [PATCH] Fixed language error (#4701) "them" word was missing --- beta/src/pages/learn/updating-arrays-in-state.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beta/src/pages/learn/updating-arrays-in-state.md b/beta/src/pages/learn/updating-arrays-in-state.md index 0f09a0e7..326547af 100644 --- a/beta/src/pages/learn/updating-arrays-in-state.md +++ b/beta/src/pages/learn/updating-arrays-in-state.md @@ -4,7 +4,7 @@ title: Updating Arrays in State -Arrays are mutable in JavaScript, but you should treat as immutable when you store them in state. Just like with objects, when you want to update an array stored in state, you need to create a new one (or make a copy of an existing one), and then set state to use the new array. +Arrays are mutable in JavaScript, but you should treat them as immutable when you store them in state. Just like with objects, when you want to update an array stored in state, you need to create a new one (or make a copy of an existing one), and then set state to use the new array.