Skip to content

Commit

Permalink
Fix: exercise 3 hint link
Browse files Browse the repository at this point in the history
If I understand correctly, this exercise is supposed to be solved with "type predicates", but the url leads to the docs section about "typeof" type guards.
  • Loading branch information
everdimension committed Apr 30, 2020
1 parent 0d52664 commit 109ff9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/exercise-03/index.ts
Expand Up @@ -76,4 +76,4 @@ console.log(chalk.yellow('Users:'));
persons.filter(isUser).forEach(logPerson);

// In case if you are stuck:
// https://www.typescriptlang.org/docs/handbook/advanced-types.html#typeof-type-guards
// https://www.typescriptlang.org/docs/handbook/advanced-types.html#using-type-predicates

0 comments on commit 109ff9c

Please sign in to comment.