Skip to content
This repository has been archived by the owner on Oct 7, 2020. It is now read-only.

Make errorm use errorM instead of warningM #1502

Merged
merged 1 commit into from
Dec 28, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hie-plugin-api/Haskell/Ide/Engine/MonadFunctions.hs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ warningm :: MonadIO m => String -> m ()
warningm s = liftIO $ warningM "hie" s

errorm :: MonadIO m => String -> m ()
errorm s = liftIO $ warningM "hie" s
errorm s = liftIO $ errorM "hie" s

-- ---------------------------------------------------------------------
-- Extensible state, based on
Expand Down