diff --git a/src/06-advanced-hooks/51-function-overloads-in-hooks.problem.ts b/src/06-advanced-hooks/51-function-overloads-in-hooks.problem.ts index 7e053f7..7c137fc 100644 --- a/src/06-advanced-hooks/51-function-overloads-in-hooks.problem.ts +++ b/src/06-advanced-hooks/51-function-overloads-in-hooks.problem.ts @@ -3,7 +3,7 @@ import { Equal, Expect } from "../helpers/type-utils"; /** * Returning to our useStateAsObject function, we now want to make it work - * EXACTLY like useState, where if you NOTHING, it returns T | undefined. + * EXACTLY like useState, where if you pass NOTHING, it returns T | undefined. * * If you pass a default value, it should NOT include undefined. */