Merge pull request #9 from qrilka/patch-1

Use correct `in_` quoting in haddock code block
This commit is contained in:
Chris Allen 2017-01-07 13:46:42 -06:00 committed by GitHub
commit 15fc5ca918

View File

@ -471,7 +471,7 @@ class (Functor query, Applicative query, Monad query) =>
-- @ -- @
-- select $ -- select $
-- 'from' $ \\person -> do -- 'from' $ \\person -> do
-- 'where_' $ person '^.' PersonId ``in_'` 'valList' personIds -- 'where_' $ person '^.' PersonId `'in_`` 'valList' personIds
-- return person -- return person
-- @ -- @
-- --