Update JSDoc

Co-authored-by: Michael B. Gale <mbg@github.com>
This commit is contained in:
Henry Mercer
2026-02-24 19:28:27 +00:00
committed by GitHub
parent e51b6a9a52
commit 2a607fea25
+1 -1
View File
@@ -1295,7 +1295,7 @@ export function joinAtMost(
return array.join(separator);
}
/** A simple result type representing either a success or a failure. */
/** An interface representing something that is either a success or a failure. */
interface ResultLike<T, E> {
/** The value of the result, which can be either a success value or a failure value. */
value: T | E;