fixed typo in guide.rst

Was reported by https://stackoverflow.com/questions/77592508/brick-documentation-guide
This commit is contained in:
willeM_ Van Onsem 2023-12-03 08:30:08 +01:00 committed by GitHub
parent d93cdfca45
commit 4e16e2834c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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