From 6f0cbae3f8755a108cdc91c31375064580b5bcac Mon Sep 17 00:00:00 2001 From: Miranto Date: Sun, 3 Sep 2023 19:13:51 +0300 Subject: [PATCH] Fix typo in method name (#1566) --- exercises/concept/boutique-inventory/.docs/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/boutique-inventory/.docs/introduction.md b/exercises/concept/boutique-inventory/.docs/introduction.md index e6f80ea8a8..8aeb8ae874 100644 --- a/exercises/concept/boutique-inventory/.docs/introduction.md +++ b/exercises/concept/boutique-inventory/.docs/introduction.md @@ -2,7 +2,7 @@ ## More enumeration methods -In Bird Count, you were introduced to the `count`, `any?`, `select`, `all` and `map` enumeration methods. +In Bird Count, you were introduced to the `count`, `any?`, `select`, `all?` and `map` enumeration methods. Here's a recap of those, with a few extras added: ```ruby