From de49970c0c724877ac7ba1c7bcf4036d36ed459c Mon Sep 17 00:00:00 2001 From: Pablo Baleztena Date: Tue, 22 Oct 2024 20:12:05 -0300 Subject: [PATCH] [fabric/core] Improve documentation for Optional type --- packages/fabric/core/types/optional.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/fabric/core/types/optional.ts b/packages/fabric/core/types/optional.ts index 3c469b4..892e679 100644 --- a/packages/fabric/core/types/optional.ts +++ b/packages/fabric/core/types/optional.ts @@ -8,6 +8,6 @@ export type Nothing = null; export const Nothing = null; /** - * Un Optional es un tipo que puede ser un valor o no ser nada. + * An `Optional` type is a type that represents a value that may or may not be present. */ export type Optional = T | Nothing;