From f5dd2ca1ffb7f917c1d5faad2370739a7be084e3 Mon Sep 17 00:00:00 2001 From: Alex Cyphus <983880+ACyphus@users.noreply.github.com> Date: Thu, 25 Sep 2025 08:43:49 -0500 Subject: [PATCH] Fix wording about arrays from `create` to `contain` --- exercises/concept/bird-count/.docs/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/bird-count/.docs/introduction.md b/exercises/concept/bird-count/.docs/introduction.md index 21c63424bc..a9237db5da 100644 --- a/exercises/concept/bird-count/.docs/introduction.md +++ b/exercises/concept/bird-count/.docs/introduction.md @@ -9,7 +9,7 @@ A negative index is assumed to be relative to the end of the array — e.g.. an ### Creating arrays Arrays are normally created using the `[]` notation. -They can create any different type of object. +They can contain any different type of object. ```ruby array = [1, "two", 3.0]