From 482baff1cf8067ccde221b93f8e1371f1e2fc120 Mon Sep 17 00:00:00 2001 From: lmssieh <122186255+lmssiehdev@users.noreply.github.com> Date: Sun, 21 Apr 2024 19:06:27 +0100 Subject: [PATCH] fix: add missing word --- src/06-advanced-hooks/51-function-overloads-in-hooks.problem.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. */