Skip to content

Commit

Permalink
📃 docs(test): Fix typo in test description
Browse files Browse the repository at this point in the history
  • Loading branch information
Snowflyt committed Nov 7, 2024
1 parent 59d6400 commit 0550935
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/effected.proof.ts
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ describe("Effected#catchAndThrow", () => {
});
});

describe("Effected#catchAndThrowAll", () => {
describe("Effected#catchAllAndThrow", () => {
type TypeError = Effect.Error<"type">;
const typeError: EffectFactory<TypeError> = error("type");
type RangeError = Effect.Error<"range">;
Expand Down
2 changes: 1 addition & 1 deletion src/effected.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ describe("Effected#catchAndThrow", () => {
});
});

describe("Effected#catchAndThrowAll", () => {
describe("Effected#catchAllAndThrow", () => {
const typeError = error("type");
const rangeError = error("range");

Expand Down

0 comments on commit 0550935

Please sign in to comment.