From c7718e197b962bd95f0b3f99a9abb3dd900c3325 Mon Sep 17 00:00:00 2001 From: i-walker <46971368+i-walker@users.noreply.github.com> Date: Fri, 11 Mar 2022 14:12:41 +0100 Subject: [PATCH] fix TOC --- .../kotlin/arrow/core/continuations/Effect.kt | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/arrow-libs/core/arrow-core/src/commonMain/kotlin/arrow/core/continuations/Effect.kt b/arrow-libs/core/arrow-core/src/commonMain/kotlin/arrow/core/continuations/Effect.kt index ed311c6cd60..6acf0d36b97 100644 --- a/arrow-libs/core/arrow-core/src/commonMain/kotlin/arrow/core/continuations/Effect.kt +++ b/arrow-libs/core/arrow-core/src/commonMain/kotlin/arrow/core/continuations/Effect.kt @@ -24,21 +24,21 @@ import kotlin.coroutines.resume * to map both values of [R] and [A] to a value of `B`. * * - - * [Writing a program with Effect](#writing-a-program-with-effect) - * [Handling errors](#handling-errors) - * [Structured Concurrency](#structured-concurrency) - * [Arrow Fx Coroutines](#arrow-fx-coroutines) - * [parZip](#parzip) - * [parTraverse](#partraverse) - * [raceN](#racen) - * [bracketCase / Resource](#bracketcase--resource) - * [KotlinX](#kotlinx) - * [withContext](#withcontext) - * [async](#async) - * [launch](#launch) - * [Strange edge cases](#strange-edge-cases) - + * + * * [Writing a program with Effect](#writing-a-program-with-effect) + * * [Handling errors](#handling-errors) + * * [Structured Concurrency](#structured-concurrency) + * * [Arrow Fx Coroutines](#arrow-fx-coroutines) + * * [parZip](#parzip) + * * [parTraverse](#partraverse) + * * [raceN](#racen) + * * [bracketCase / Resource](#bracketcase--resource) + * * [KotlinX](#kotlinx) + * * [withContext](#withcontext) + * * [async](#async) + * * [launch](#launch) + * * [Strange edge cases](#strange-edge-cases) + * * * *