Skip to content

Commit d40fa4f

Browse files
authored
fix intem->item (#184)
1 parent 8df98e0 commit d40fa4f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/DearImGui.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1748,7 +1748,7 @@ beginPopup :: MonadIO m => Text -> m Bool
17481748
beginPopup popupId = liftIO do
17491749
Text.withCString popupId Raw.beginPopup
17501750

1751-
-- | Append intems to a non-modal Popup.
1751+
-- | Append items to a non-modal Popup.
17521752
--
17531753
-- Non-modal popups can be closed by clicking anywhere outside them,
17541754
-- or by pressing ESCAPE.
@@ -1759,7 +1759,7 @@ beginPopup popupId = liftIO do
17591759
withPopup :: MonadUnliftIO m => Text -> (Bool -> m a) -> m a
17601760
withPopup popupId = bracket (beginPopup popupId) (`when` Raw.endPopup)
17611761

1762-
-- | Append intems to a non-modal Popup.
1762+
-- | Append items to a non-modal Popup.
17631763
--
17641764
-- Non-modal popups can be closed by clicking anywhere outside them,
17651765
-- or by pressing ESCAPE.
@@ -1778,7 +1778,7 @@ beginPopupModal :: MonadIO m => Text -> m Bool
17781778
beginPopupModal popupId = liftIO do
17791779
Text.withCString popupId Raw.beginPopupModal
17801780

1781-
-- | Append intems to a modal Popup.
1781+
-- | Append items to a modal Popup.
17821782
--
17831783
-- Modal popups can be closed only with 'closeCurrentPopup'.
17841784
--

0 commit comments

Comments
 (0)