From 700eeab911d2103ddc95ad428d974355e080bb72 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?H=C3=A9cate=20Kleidukos?= <hecate+gitlab@glitchbra.in>
Date: Mon, 10 Jun 2024 15:11:42 +0200
Subject: [PATCH] base: Use a more appropriate unicode arrow for the ByteArray
 diagram

This commit rectifies the usage of a unicode arrow in favour of one that
doesn't provoke mis-alignment.
---
 libraries/base/src/Data/Array/Byte.hs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libraries/base/src/Data/Array/Byte.hs b/libraries/base/src/Data/Array/Byte.hs
index 45e7890abb9b..2dbc69ab7285 100644
--- a/libraries/base/src/Data/Array/Byte.hs
+++ b/libraries/base/src/Data/Array/Byte.hs
@@ -48,7 +48,7 @@ import Prelude
 -- The memory representation of a 'ByteArray' is:
 --
 -- > ╭─────────────┬───╮  ╭────────┬──────┬─────────╮
--- > │ Constructor │ * ┼─➤│ Header │ Size │ Payload │
+-- > │ Constructor │ * ┼─►│ Header │ Size │ Payload │
 -- > ╰─────────────┴───╯  ╰────────┴──────┴─────────╯
 --
 -- And its overhead is the following:
-- 
GitLab