Fix some incorrect "@since" haddock comments

This commit is contained in:
Michael Walker 2017-11-07 14:21:23 +00:00
parent b0fb55a50e
commit 9354282ee5
2 changed files with 16 additions and 5 deletions

View File

@ -7,6 +7,17 @@ This project is versioned according to the [Package Versioning Policy](https://p
*de facto* standard Haskell versioning scheme.
unreleased
----------
### Test.DejaFu.Common
- Fix some incorrect "@since" haddock comments.
---------------------------------------------------------------------------------------------------
0.9.0.3
-------

View File

@ -933,21 +933,21 @@ showFail IllegalSubconcurrency = "[illegal-subconcurrency]"
-- | Check if a failure is an @InternalError@.
--
-- @since undefined
-- @since 0.9.0.0
isInternalError :: Failure -> Bool
isInternalError InternalError = True
isInternalError _ = False
-- | Check if a failure is an @Abort@.
--
-- @since undefined
-- @since 0.9.0.0
isAbort :: Failure -> Bool
isAbort Abort = True
isAbort _ = False
-- | Check if a failure is a @Deadlock@ or an @STMDeadlock@.
--
-- @since undefined
-- @since 0.9.0.0
isDeadlock :: Failure -> Bool
isDeadlock Deadlock = True
isDeadlock STMDeadlock = True
@ -955,14 +955,14 @@ isDeadlock _ = False
-- | Check if a failure is an @UncaughtException@
--
-- @since undefined
-- @since 0.9.0.0
isUncaughtException :: Failure -> Bool
isUncaughtException (UncaughtException _) = True
isUncaughtException _ = False
-- | Check if a failure is an @IllegalSubconcurrency@
--
-- @since undefined
-- @since 0.9.0.0
isIllegalSubconcurrency :: Failure -> Bool
isIllegalSubconcurrency IllegalSubconcurrency = True
isIllegalSubconcurrency _ = False