Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasavila00 committed Apr 6, 2024
1 parent 1d96b5c commit 53a18cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/mdts/src/programs/from-test/__tests__/flue-01.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Returns a promise that resolves with the Flue value or rejects.
```ts
const emptyDependency = undefined;

await Flue.resolve(1).execute(emptyDependency);
console.log(await Flue.resolve(1).execute(emptyDependency));
```

```json
Expand All @@ -33,7 +33,7 @@ await Flue.resolve(1).execute(emptyDependency);
Returns an object that represents either a success (Right) or a failure (Left).

```ts
await Flue.resolve(2).toEither(emptyDependency);
console.log(await Flue.resolve(2).toEither(emptyDependency));
```

```js
Expand All @@ -44,7 +44,7 @@ await Flue.resolve(2).toEither(emptyDependency);
```

```ts
await Flue.reject(new Error("It failed")).toEither(emptyDependency);
console.log(await Flue.reject(new Error("It failed")).toEither(emptyDependency));
```

```js
Expand Down

0 comments on commit 53a18cc

Please sign in to comment.