Skip to content

Commit b1019df

Browse files
authored
Update 02-ide-superpowers.md
Fixed a typo , changed filterUsersById to findUsersById
1 parent e9400f8 commit b1019df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

book-content/chapters/02-ide-superpowers.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ A TypeScript-enabled feature called 'Rename Symbol' allows you to do that with a
421421
Let's take a look at an example.
422422

423423
```typescript
424-
const filterUsersById = (id: string) => {
424+
const findUsersById = (id: string) => {
425425
return users.filter((user) => user.id === id);
426426
};
427427
```

0 commit comments

Comments
 (0)