We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eaf458b commit fcc8586Copy full SHA for fcc8586
1 file changed
packages/common/src/Type.ts
@@ -253,7 +253,6 @@ export interface Type<
253
*
254
* - When you need to convert a validation result to a nullable value
255
* - When the error is not important and you just want the value or nothing
256
- * - APIs that expect `T` or `null`
257
258
* ### Example
259
@@ -370,8 +369,6 @@ export interface Type<
370
369
readonly ParentError: ParentError;
371
372
/**
373
- * Error / ParentError
374
- *
375
376
377
* ```ts
@@ -461,7 +458,7 @@ export type InferParentError<A extends AnyType> =
461
458
: never;
462
459
463
460
464
- * Extracts all error types (Error / ParentError) from a {@link Type}.
+ * Extracts all error types from a {@link Type}.
465
466
* @category Utilities
467
*/
0 commit comments