From b1019df570fcea7e74c49de0728cc27d6706de55 Mon Sep 17 00:00:00 2001 From: pydithallinaidu <135203501+pydi99@users.noreply.github.com> Date: Thu, 19 Sep 2024 14:37:39 +0530 Subject: [PATCH] Update 02-ide-superpowers.md Fixed a typo , changed filterUsersById to findUsersById --- book-content/chapters/02-ide-superpowers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book-content/chapters/02-ide-superpowers.md b/book-content/chapters/02-ide-superpowers.md index 43c63d7..5d01d96 100644 --- a/book-content/chapters/02-ide-superpowers.md +++ b/book-content/chapters/02-ide-superpowers.md @@ -421,7 +421,7 @@ A TypeScript-enabled feature called 'Rename Symbol' allows you to do that with a Let's take a look at an example. ```typescript -const filterUsersById = (id: string) => { +const findUsersById = (id: string) => { return users.filter((user) => user.id === id); }; ```