diff --git a/docs/docs/option.md b/docs/docs/option.md index 6741c19..d80cc12 100644 --- a/docs/docs/option.md +++ b/docs/docs/option.md @@ -85,7 +85,7 @@ option.flatMap((value) => value.optionalProperty); Option.filter(f: (value: A) => boolean): Option ``` -If the option is `Some(value)` and that `f(value)` is `true``, returns `Some(value)`, otherwise returns `None`. +If the option is `Some(value)` and that `f(value)` is `true`, returns `Some(value)`, otherwise returns `None`. ```ts title="Examples" Option.Some(3).filter((x) => x > 2);