From cd5dc00dbd013c927cf56b933aef3344446ae024 Mon Sep 17 00:00:00 2001 From: Matei Adriel Date: Thu, 26 Dec 2019 16:28:38 +0200 Subject: [PATCH] typescript(option): docs: fixed all the comments where I called Option Maybe and None Nothing Signed-off-by: prescientmoon --- typescript/option/src/helpers/unwrap.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typescript/option/src/helpers/unwrap.ts b/typescript/option/src/helpers/unwrap.ts index 75ddaee..062a676 100644 --- a/typescript/option/src/helpers/unwrap.ts +++ b/typescript/option/src/helpers/unwrap.ts @@ -3,8 +3,8 @@ import { Mapper } from '../internalTypes' import { isSome } from './isSome' /** - * Apply the function to the value in the Maybe and return it unwrapped. - * If the Maybe is Nothing, use the default value instead. + * Apply the function to the value in the Option and return it unwrapped. + * If the Option is None, use the default value instead. * * @param _default The default value to use. * @param mapper Function to apply to the inner value.