Skip to content

Commit

Permalink
Fix haddocks of createPipe
Browse files Browse the repository at this point in the history
  • Loading branch information
sol committed Nov 22, 2024
1 parent a5a3865 commit f450ce0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions System/Process/Internals.hs
Original file line number Diff line number Diff line change
Expand Up @@ -200,16 +200,16 @@ runGenProcess_ fun c _ _ = createProcess_ fun c
--
-- @
-- #if defined(__IO_MANAGER_WINIO__)
-- import GHC.IO.SubSystem ((<!>))
-- import GHC.IO.SubSystem ((`<!>`))
-- import GHC.IO.Handle.Windows (handleToHANDLE)
-- import GHC.Event.Windows (associateHandle')
-- #endif
--
-- ...
--
-- #if defined (__IO_MANAGER_WINIO__)
-- return () <!> (do
-- associateHandle' =<< handleToHANDLE <handle>)
-- return () `<!>` (do
-- associateHandle' `=<<` handleToHANDLE handle)
-- #endif
-- @
--
Expand Down

0 comments on commit f450ce0

Please sign in to comment.