From 4e2ee1b70dade1f0e12a33dd23149a695f5f2f49 Mon Sep 17 00:00:00 2001 From: Lauren Schaefer Date: Fri, 12 Sep 2025 12:59:12 -0400 Subject: [PATCH] Update 11_find_arrays.ipynb Copy changes --- javascript/11_find_arrays.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/11_find_arrays.ipynb b/javascript/11_find_arrays.ipynb index 70a9c96..6798988 100644 --- a/javascript/11_find_arrays.ipynb +++ b/javascript/11_find_arrays.ipynb @@ -147,7 +147,7 @@ "source": [ "## Don't make this mistake!\n", "\n", - "This will try to find books that have two genres and their names are exactly these and in that order! It is comparing the whole array! Usually we want to search inside the array." + "The query below will try to find books that have exactly two genres (Poetry and Fiction) in the designated order. The query looks for an exact match of the array. Usually we want to search inside the array." ] }, {