commit 4887a5a93e441674f45fe313141b56a3a9a8985e
parent 9ba026143fe4515b6c9db1c21106c9f90a728a9a
Author: Francesco Ariis <fa-ml@ariis.it>
Date: Mon, 6 Mar 2023 18:09:43 +0100
Fix typo
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Terminal/Game/Plane.hs b/src/Terminal/Game/Plane.hs
@@ -206,7 +206,7 @@ isReversed :: Cell -> Bool
isReversed (CellChar _ _ r _) = r
isReversed _ = False
--- | A String (@\n@ divided and ended) representing the 'Plane'. Useful
+-- | A String (@\\n@ divided and ended) representing the 'Plane'. Useful
-- for debugging/testing purposes.
planePaper :: Plane -> String
planePaper p = unlines . LS.chunksOf w . map cellChar $ elemsPlane p