From 5556ea7601434a705490a4128c6357344cb15aa6 Mon Sep 17 00:00:00 2001 From: hg-pyun Date: Thu, 25 Apr 2024 10:18:07 +0900 Subject: [PATCH] fix(unless): invalid return tag --- src/unless.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unless.ts b/src/unless.ts index d1cba2dd..35cb8c7f 100644 --- a/src/unless.ts +++ b/src/unless.ts @@ -13,7 +13,7 @@ * ``` * * @param predicate determines whether to execute `process` - * @return original input or result of `process` + * @returns original input or result of `process` */ function unless( predicate: (input: T) => input is N,