Very minor formatting updates

This commit is contained in:
Adrian Herrera 2016-06-04 15:45:36 +10:00
parent 2fb420b991
commit a4cdcb7fde
2 changed files with 3 additions and 4 deletions

View file

@ -31,8 +31,7 @@ import Foreign
{# pointer *uc_engine as EnginePtr -> Engine #}
-- | Make a new Unicorn engine out of an engine pointer. The returned Unicorn
-- engine will automatically close 'uc_close_wrapper' when it goes out of
-- scope.
-- engine will automatically call 'uc_close_wrapper' when it goes out of scope.
mkEngine :: EnginePtr -> IO Engine
mkEngine ptr =
liftM Engine (newForeignPtr close ptr)