From 2602da39b8d461b652e629ca068ee2bb9a83fcbf Mon Sep 17 00:00:00 2001 From: Dave Drouin Date: Wed, 25 Dec 2024 13:46:35 -0500 Subject: [PATCH] Update arrays-and-slices.md (#830) Adjust to correct grammar --- arrays-and-slices.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arrays-and-slices.md b/arrays-and-slices.md index 39c919ed..b9af4f82 100644 --- a/arrays-and-slices.md +++ b/arrays-and-slices.md @@ -5,7 +5,7 @@ Arrays allow you to store multiple elements of the same type in a variable in a particular order. -When you have an array, it is very common to have to iterate over them. So let's +When you have arrays, it is very common to have to iterate over them. So let's use [our new-found knowledge of `for`](iteration.md) to make a `Sum` function. `Sum` will take an array of numbers and return the total.