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); }; ```