From 1c4176cc03ad35a3ae606e90e82774bcf7507de4 Mon Sep 17 00:00:00 2001 From: Giulio Canti Date: Wed, 24 Jul 2024 17:04:03 +0200 Subject: [PATCH] remove link to non existing API (#3334) --- packages/effect/src/Option.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/effect/src/Option.ts b/packages/effect/src/Option.ts index d67acee9aa..fd45d6a801 100644 --- a/packages/effect/src/Option.ts +++ b/packages/effect/src/Option.ts @@ -254,8 +254,6 @@ export const fromIterable = (collection: Iterable): Option => { /** * Converts a `Either` to an `Option` discarding the error. * - * Alias of {@link fromEither}. - * * @example * import { Option, Either } from "effect" *