You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pages/docs/essentials/creating.mdx
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -209,18 +209,18 @@ Let's explore some common scenarios where `Effect.suspend` proves useful:
209
209
210
210
The table provides a summary of the available constructors, along with their input and output types, allowing you to choose the appropriate function based on your needs.
Copy file name to clipboardExpand all lines: pages/docs/essentials/pipeline.mdx
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -295,7 +295,7 @@ Let's summarize the transformation functions we have seen so far:
295
295
|`map`|`Effect<R, E, A>`, `A => B`|`Effect<R, E, B>`|
296
296
|`flatMap`|`Effect<R, E, A>`, `A => Effect<R, E, B>`|`Effect<R, E, B>`|
297
297
|`tap`|`Effect<R, E, A>`, `A => Effect<R, E, B>`|`Effect<R, E, A>`|
298
-
|`all`|`Effect<R, E, A>`, `Effect<R, E, B>`, ... |`Effect<R, E, [A, B, ...]>`|
298
+
|`all`|`[Effect<R, E, A>, Effect<R, E, B>, ...]`|`Effect<R, E, [A, B, ...]>`|
299
299
300
300
These functions are powerful tools for transforming and chaining `Effect` computations. They allow you to apply functions to values inside `Effect` and build complex pipelines of computations.
0 commit comments