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,