From 30e72419e6f30ef9b3cb45e97b69c705b71f54b0 Mon Sep 17 00:00:00 2001 From: Tomas Fischer Date: Sat, 3 Feb 2024 21:50:54 +0100 Subject: [PATCH] Update exercises/practice/affine-cipher/.docs/instructions.append.md Co-authored-by: Matthijs <19817960+MatthijsBlom@users.noreply.github.com> --- .../practice/affine-cipher/.docs/instructions.append.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/exercises/practice/affine-cipher/.docs/instructions.append.md b/exercises/practice/affine-cipher/.docs/instructions.append.md index 2ebf3ca89..13611d696 100644 --- a/exercises/practice/affine-cipher/.docs/instructions.append.md +++ b/exercises/practice/affine-cipher/.docs/instructions.append.md @@ -17,10 +17,8 @@ import qualified Data.Text as T import Data.Text (Text) ``` -- use the `Text` type e.g. `decode :: Text -> Text` and refer to - `Data.Text` combinators as e.g. `T.pack`. -- look up the documentation for - [`Data.Text`](https://hackage.haskell.org/package/text/docs/Data-Text.html). +- use the `Text` type e.g. `decode :: Text -> Text` and refer to `Data.Text` combinators as e.g. `T.pack`. +- look up the documentation for [`Data.Text`](https://hackage.haskell.org/package/text/docs/Data-Text.html). - replace all occurrences of `String` with `Text` in Affine.hs, i.e.: ```haskell