Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion book-content/chapters/02-ide-superpowers.md
Original file line number Diff line number Diff line change
Expand Up @@ -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);
};
```
Expand Down