From 840b30e6f367b2b98ffe12236cc22f06d231a697 Mon Sep 17 00:00:00 2001 From: Bram van den Heuvel Date: Tue, 14 Mar 2023 15:51:40 +0100 Subject: [PATCH] Fix ASCII snake --- src/Internal/Api/Chain.elm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Internal/Api/Chain.elm b/src/Internal/Api/Chain.elm index 855edad..ddf9301 100644 --- a/src/Internal/Api/Chain.elm +++ b/src/Internal/Api/Chain.elm @@ -14,12 +14,12 @@ submodule, this can lead to indentation hell. This module aims to allow for simple task chaining without adding too much complexity if you wish to pass on values. -The model is like a snake: \_\_\_\_\_ -/ o \\ -/-|------------ | ------- | ------------- | -------- | |// -< | accessToken | baseUrl | transactionId | API call | |------< Final API call --|------------ | ------- | ------------- | -------- | |//\\ ------/ +The model is like a snake: _____ + / o \ + /-|------------ | ------- | ------------- | -------- | |\/\/ + < | accessToken | baseUrl | transactionId | API call | |------< Final API call + \-|------------ | ------- | ------------- | -------- | |/\/\ + \-----/ (You're not allowed to judge my ASCII art skills unless you submit a PR with a superior ASCII snake model.)