Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs #2

Merged
merged 1 commit into from
Apr 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

This is very simple wrapper around `Effect.gen` that makes sure that generator functions can be written in a cleaner way.

With plain `Effect`:
With plain `effect`:

```tsx
import { Effect } from "effect";
Expand Down Expand Up @@ -35,7 +35,7 @@ export const getTodoById = effect(function* (id: string) {
});
```

If the generator function has no argument than `effect` will work exactly the same as `Effect.gen`.
If the generator function has no arguments, then `effect` will work exactly the same as `Effect.gen`.

```tsx
const value: Effect.Effect<number> = effect(function* () {
Expand Down
Loading