Skip to content

Commit

Permalink
Renamed file, removed block quote and image
Browse files Browse the repository at this point in the history
  • Loading branch information
taras committed Dec 15, 2023
1 parent dd5a0a7 commit 8579dd2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
Binary file removed www/assets/images/running-to-completion-demo.gif
Binary file not shown.
2 changes: 1 addition & 1 deletion www/docs/structure.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
["introduction.mdx", "Introduction"],
["installation.mdx", "Installation"],
["typescript.mdx", "TypeScript"],
["thinking-effection.mdx", "Thinking in Effection"],
["thinking-in-effection.mdx", "Thinking in Effection"],
["async-rosetta-stone.mdx", "Async Rosetta Stone"]
],
"Learn Effection": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ child operations when the parent operation completes or is halted. Like with mem
scope frees developers to focus on writing their applications instead of worrying about where and when to run
asynchronous cleanup.

The key to achieving this freedom is to make the following mental shift about the natural lifetime of an asynchronous operation.
The key to achieving this freedom is to make the following mental shift about the natural lifetime of an asynchronous
operation.

**before**

Expand All @@ -35,10 +36,6 @@ The key to achieving this freedom is to make the following mental shift about th
Effection provides this shift. Whenever an operation completes, none of its child operations are left
around to pollute your runtime.

> 💡 You might assume that Effection makes all operations asynchronous which is incorrect. Effection is built on
[Deliminated Continuations][delimited-continuation-repo] which allows us to treat synchronous and asynchronous
operations uniformly without forcing synchronous operations to run asynchronously.

## Every operation exits fully.

We expect synchronous functions to run completely from start to finish.
Expand Down

0 comments on commit 8579dd2

Please sign in to comment.