Use correct in_ quoting in haddock code block

Follow-up on https://github.com/prowdsponsor/esqueleto/pull/154
This commit is contained in:
Kirill Zaborsky 2017-01-07 16:02:00 +03:00 committed by GitHub
parent bfc8502dbf
commit 39c0fdd02e

View File

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