Fix typo.

This commit is contained in:
Kei Hibino 2015-04-07 00:14:17 +09:00
parent 37f59d02cf
commit 1811dbc987
2 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ personAndBirthday <span class="fu">=</span> relation <span class="fu">$</span>
<span class="ot">-&gt;</span> m (<span class="dt">Projection</span> <span class="dt">Flat</span> (<span class="dt">Maybe</span> r))
<span class="ot">on ::</span> <span class="dt">MonadQuery</span> m <span class="ot">=&gt;</span> <span class="dt">Projection</span> <span class="dt">Flat</span> (<span class="dt">Maybe</span> <span class="dt">Bool</span>) <span class="ot">-&gt;</span> m ()</code></pre>
<p>'query' and 'fqueryMaybe' return a Projection type of table form results.</p>
<p>'query' and 'queryMaybe' return a Projection type of table form results.</p>
<pre class="sourceCode sql"><code class="sourceCode sql"><span class="kw">SELECT</span> .. <span class="kw">FROM</span> ...
<span class="co">-- Accumulating uniquely qualified</span>
<span class="co">-- ( like 'as T0', 'as T1' ... )</span>

View File

@ -65,7 +65,7 @@ queryMaybe :: (MonadQualify ConfigureQuery m, MonadQuery m)
on :: MonadQuery m => Projection Flat (Maybe Bool) -> m ()
~~~~~
'query' and 'fqueryMaybe' return a Projection type of table form results.
'query' and 'queryMaybe' return a Projection type of table form results.
~~~~~ {.sql}
SELECT .. FROM ...