correct comment

This commit is contained in:
Vincent Hanquez 2011-03-19 08:37:47 +00:00
parent 2dd5300fff
commit da6e72ba7e

View file

@ -83,8 +83,8 @@ instance Show TLSParams where
-- | A TLS Context is a handle augmented by tls specific state and parameters
data TLSCtx = TLSCtx
{ ctxHandle :: Handle
, ctxParams :: TLSParams -- ^ return the handle associated with this context
{ ctxHandle :: Handle -- ^ return the handle associated with this context
, ctxParams :: TLSParams
, ctxState :: MVar TLSState
}