fix(learn): correct minor grammar mistake (#39915)

This commit is contained in:
nick-w-nick
2020-10-13 07:14:49 -04:00
committed by GitHub
parent ebebe1ed5e
commit 10d3126383

View File

@ -24,7 +24,7 @@ As you can see, you can mutate the object <code>[5, 6, 7]</code> itself and the
## Instructions
<section id='instructions'>
An array is declared as <code>const s = [5, 7, 2]</code>. Change the array to <code>[2, 5, 7]</code> using various element assignment.
An array is declared as <code>const s = [5, 7, 2]</code>. Change the array to <code>[2, 5, 7]</code> using various element assignments.
</section>
## Tests