Skip to content

Commit

Permalink
link modules in doc
Browse files Browse the repository at this point in the history
  • Loading branch information
kmcallister committed Aug 28, 2011
1 parent 9ab2d2d commit 68beb43
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Hdis86/C.hsc
Expand Up @@ -5,7 +5,7 @@
-- | Bare import of the @udis86@ C library.
--
-- This module is not recommended for most users. What you see is what you get.
-- The modules @'Hdis86.IO'@ and @'Hdis86.Pure'@ provide a more Haskell-friendly
-- The modules "Hdis86.IO" and "Hdis86.Pure" provide a more Haskell-friendly
-- interface to the same functionality.
--
-- If you want to use this module, see the @udis86@ documentation: <http://udis86.sourceforge.net>
Expand Down
2 changes: 1 addition & 1 deletion Hdis86/IO.hs
Expand Up @@ -12,7 +12,7 @@
-- this module's API is thoroughly imperative, but uses
-- Haskellish types and automatic resource management.
--
-- For a higher-level, @IO@-free API, see @'Hdis86.Pure'@.
-- For a higher-level, @IO@-free API, see "Hdis86.Pure".
--
-- This module is fully thread-safe: any number of threads
-- may manipulate one or several @'UD'@ objects at the same
Expand Down
4 changes: 2 additions & 2 deletions Hdis86/Pure.hs
Expand Up @@ -2,7 +2,7 @@
--
-- This is the simplest, most high-level interface.
--
-- See @'Hdis86.IO'@ if you need more control or performance.
-- See "Hdis86.IO" if you need more control or performance.
module Hdis86.Pure
( -- * Simple disassembly
disassemble
Expand Down Expand Up @@ -31,7 +31,7 @@ disWith f cfg bs = unsafePerformIO $ do
-- | Disassemble machine code.
--
-- Common values for @'Config'@ such as @'intel32'@ or @'amd64'@
-- are provided in @'Hdis86.Types'@.
-- are provided in "Hdis86.Types".
--
-- The output is produced lazily.
disassemble :: Config -> BS.ByteString -> [Instruction]
Expand Down

0 comments on commit 68beb43

Please sign in to comment.