From cf0bc7ffce4f7baa6d8e3c5d7ebba75dad1b104b Mon Sep 17 00:00:00 2001 From: Rezvan Mahdavi Hezaveh <31081679+rmahdav@users.noreply.github.com> Date: Thu, 28 Mar 2024 17:02:38 -0700 Subject: [PATCH] fix typo (#752) --- src/features/iterator-helpers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/iterator-helpers.md b/src/features/iterator-helpers.md index a4d50891..f06f2492 100644 --- a/src/features/iterator-helpers.md +++ b/src/features/iterator-helpers.md @@ -137,7 +137,7 @@ console.log(dates); // Select the list of blog posts from a blog archive page. const posts = document.querySelectorAll('li:not(header li)'); -// Find out if text content (title) of any blog post includes the `Iteartors` +// Find out if text content (title) of any blog post includes the `Iterators` // keyword. posts.values().some((x) => x.textContent.includes('Iterators')); ```