From 4e16e2834c9c9af6a81a4675418faa6524ed2d7c Mon Sep 17 00:00:00 2001 From: willeM_ Van Onsem <3482343+KommuSoft@users.noreply.github.com> Date: Sun, 3 Dec 2023 08:30:08 +0100 Subject: [PATCH] fixed typo in guide.rst Was reported by https://stackoverflow.com/questions/77592508/brick-documentation-guide --- docs/guide.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide.rst b/docs/guide.rst index d4a449b..5e06a65 100644 --- a/docs/guide.rst +++ b/docs/guide.rst @@ -298,7 +298,7 @@ An example application state using an editor might look like this: .. code:: haskell - data MyState = MyState { _editor :: Editor Text n } + data MyState n = MyState { _editor :: Editor Text n } makeLenses ''MyState This declares the ``MyState`` type with an ``Editor`` contained within