From 05509350ea7177e20a4b44eaf8177eee4e69e4db Mon Sep 17 00:00:00 2001 From: Snowflyt Date: Thu, 7 Nov 2024 11:31:44 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=83=20docs(test):=20Fix=20typo=20in=20?= =?UTF-8?q?test=20description?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/effected.proof.ts | 2 +- src/effected.spec.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/effected.proof.ts b/src/effected.proof.ts index ae7f8f6..5691056 100644 --- a/src/effected.proof.ts +++ b/src/effected.proof.ts @@ -229,7 +229,7 @@ describe("Effected#catchAndThrow", () => { }); }); -describe("Effected#catchAndThrowAll", () => { +describe("Effected#catchAllAndThrow", () => { type TypeError = Effect.Error<"type">; const typeError: EffectFactory = error("type"); type RangeError = Effect.Error<"range">; diff --git a/src/effected.spec.ts b/src/effected.spec.ts index fb4a3ed..267e488 100644 --- a/src/effected.spec.ts +++ b/src/effected.spec.ts @@ -666,7 +666,7 @@ describe("Effected#catchAndThrow", () => { }); }); -describe("Effected#catchAndThrowAll", () => { +describe("Effected#catchAllAndThrow", () => { const typeError = error("type"); const rangeError = error("range");