File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1748,7 +1748,7 @@ beginPopup :: MonadIO m => Text -> m Bool
1748
1748
beginPopup popupId = liftIO do
1749
1749
Text. withCString popupId Raw. beginPopup
1750
1750
1751
- -- | Append intems to a non-modal Popup.
1751
+ -- | Append items to a non-modal Popup.
1752
1752
--
1753
1753
-- Non-modal popups can be closed by clicking anywhere outside them,
1754
1754
-- or by pressing ESCAPE.
@@ -1759,7 +1759,7 @@ beginPopup popupId = liftIO do
1759
1759
withPopup :: MonadUnliftIO m => Text -> (Bool -> m a ) -> m a
1760
1760
withPopup popupId = bracket (beginPopup popupId) (`when` Raw. endPopup)
1761
1761
1762
- -- | Append intems to a non-modal Popup.
1762
+ -- | Append items to a non-modal Popup.
1763
1763
--
1764
1764
-- Non-modal popups can be closed by clicking anywhere outside them,
1765
1765
-- or by pressing ESCAPE.
@@ -1778,7 +1778,7 @@ beginPopupModal :: MonadIO m => Text -> m Bool
1778
1778
beginPopupModal popupId = liftIO do
1779
1779
Text. withCString popupId Raw. beginPopupModal
1780
1780
1781
- -- | Append intems to a modal Popup.
1781
+ -- | Append items to a modal Popup.
1782
1782
--
1783
1783
-- Modal popups can be closed only with 'closeCurrentPopup'.
1784
1784
--
You can’t perform that action at this time.
0 commit comments