1 parent 1a9d53c commit 1acb404Copy full SHA for 1acb404
1 file changed
modules/core/src/main/scala/com/flowforge/core/EffectSystem.scala
@@ -163,7 +163,7 @@ trait EffectSystem[F[_]] {
163
164
/**
165
* Flatten nested effects.
166
- * Converts F[F[A]] to F[A] by removing one level of nesting.
+ * Converts F[ F[A] ] to F[A] by removing one level of nesting.
167
*/
168
def flatten[A](ffa: F[F[A]]): F[A] = flatMap(ffa)(identity)
169
0 commit comments