From d40fa4f6dbbc860a3922c705acb7371baec32bd8 Mon Sep 17 00:00:00 2001 From: Carter Tazio Schonwald <4290+cartazio@users.noreply.github.com> Date: Wed, 9 Aug 2023 06:03:43 -0400 Subject: [PATCH] fix intem->item (#184) --- src/DearImGui.hs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/DearImGui.hs b/src/DearImGui.hs index 1bd9188..491d66c 100644 --- a/src/DearImGui.hs +++ b/src/DearImGui.hs @@ -1748,7 +1748,7 @@ beginPopup :: MonadIO m => Text -> m Bool beginPopup popupId = liftIO do Text.withCString popupId Raw.beginPopup --- | Append intems to a non-modal Popup. +-- | Append items to a non-modal Popup. -- -- Non-modal popups can be closed by clicking anywhere outside them, -- or by pressing ESCAPE. @@ -1759,7 +1759,7 @@ beginPopup popupId = liftIO do withPopup :: MonadUnliftIO m => Text -> (Bool -> m a) -> m a withPopup popupId = bracket (beginPopup popupId) (`when` Raw.endPopup) --- | Append intems to a non-modal Popup. +-- | Append items to a non-modal Popup. -- -- Non-modal popups can be closed by clicking anywhere outside them, -- or by pressing ESCAPE. @@ -1778,7 +1778,7 @@ beginPopupModal :: MonadIO m => Text -> m Bool beginPopupModal popupId = liftIO do Text.withCString popupId Raw.beginPopupModal --- | Append intems to a modal Popup. +-- | Append items to a modal Popup. -- -- Modal popups can be closed only with 'closeCurrentPopup'. --