diff options
Diffstat (limited to 'libraries/base/System/Exit.hs')
-rw-r--r-- | libraries/base/System/Exit.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/System/Exit.hs b/libraries/base/System/Exit.hs index 088a76bd96..2d0e6928ae 100644 --- a/libraries/base/System/Exit.hs +++ b/libraries/base/System/Exit.hs @@ -77,6 +77,6 @@ exitSuccess = exitWith ExitSuccess -- | Write given error message to `stderr` and terminate with `exitFailure`. -- --- /Since: 4.8.0.0/ +-- @since 4.8.0.0 die :: String -> IO a die err = hPutStrLn stderr err >> exitFailure |