From 64e8e0a8750f2e185b5567d9f8c59e2ed7870adf Mon Sep 17 00:00:00 2001 From: Luca Tassinari Date: Mon, 4 Mar 2024 23:58:06 +0100 Subject: [PATCH] docs: add libraries in intro --- README.md | 2 +- docs/content/_index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3eb5bd06..6c70fe00 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ## Goals of the project -In the realm of asynchronous programming, the Scala ecosystem offers a set of solid monads constructs to tackle complex task functionally with elegance and efficiency, like [Monix Tasks](https://monix.io/docs/current/eval/task.html) and [Cats Effect](https://typelevel.org/cats-effect/). +In the realm of asynchronous programming, the Scala ecosystem offers a set of solid monads constructs and libraries to tackle complex task functionally with elegance and efficiency, like [Monix Tasks](https://monix.io/docs/current/eval/task.html) and [Cats Effect](https://typelevel.org/cats-effect/). However, we are assisting to the increase in adoption of continuation and coroutines in modern runtimes, either exploiting some kind of fibers support, like the project Loom with Virtual Threads, or via code generation, like Kotlin Coroutines. diff --git a/docs/content/_index.md b/docs/content/_index.md index 42c0e645..ade04c7c 100644 --- a/docs/content/_index.md +++ b/docs/content/_index.md @@ -2,7 +2,7 @@ ## Goals of the project -> In the realm of asynchronous programming, the Scala ecosystem offers a set of solid monads constructs to tackle complex task functionally with elegance and efficiency, like [Monix Tasks](https://monix.io/docs/current/eval/task.html) and [Cats Effect](https://typelevel.org/cats-effect/). +> In the realm of asynchronous programming, the Scala ecosystem offers a set of solid monads constructs and libraries to tackle complex task functionally with elegance and efficiency, like [Monix Tasks](https://monix.io/docs/current/eval/task.html) and [Cats Effect](https://typelevel.org/cats-effect/). > > However, we are assisting to the increase in adoption of continuation and coroutines in modern runtimes, either exploiting some kind of fibers support, like the project Loom with Virtual Threads, or via code generation, like Kotlin Coroutines. >