Skip to content
Snippets Groups Projects
Commit fdea7ada authored by Ben Gamari's avatar Ben Gamari Committed by Marge Bot
Browse files

ghc-internal: comment formatting

parent 39f3d922
No related branches found
No related tags found
No related merge requests found
......@@ -189,18 +189,17 @@ instance Show SomeAsyncException where
-- | @since base-4.7.0.0
instance Exception SomeAsyncException
-- |@since base-4.7.0.0
-- | @since base-4.7.0.0
asyncExceptionToException :: Exception e => e -> SomeException
asyncExceptionToException = toException . SomeAsyncException
-- |@since base-4.7.0.0
-- | @since base-4.7.0.0
asyncExceptionFromException :: Exception e => SomeException -> Maybe e
asyncExceptionFromException x = do
SomeAsyncException a <- fromException x
cast a
-- |Asynchronous exceptions.
-- | Asynchronous exceptions.
data AsyncException
= StackOverflow
-- ^The current thread\'s stack exceeded its limit.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment