Skip to content

Commit a78415c

Browse files
committed
lecture 5: fix query example
1 parent 725dc91 commit a78415c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

part1.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3157,7 +3157,7 @@ <h2 data-number="5.4" id="record-syntax"><span class="header-section-number">5.4
31573157
<p>Suppose that we need to find all engineers from Finland:</p>
31583158
<div class="sourceCode" id="cb361"><pre class="sourceCode haskell"><code class="sourceCode haskell"><span id="cb361-1"><a href="#cb361-1" aria-hidden="true" tabindex="-1"></a><span class="ot">query ::</span> [<span class="dt">Person</span>] <span class="ot">-&gt;</span> [<span class="dt">Person</span>]</span>
31593159
<span id="cb361-2"><a href="#cb361-2" aria-hidden="true" tabindex="-1"></a>query [] <span class="ot">=</span> []</span>
3160-
<span id="cb361-3"><a href="#cb361-3" aria-hidden="true" tabindex="-1"></a>query (<span class="dt">MkPerson</span> name age town state profession)<span class="op">:</span>xs</span>
3160+
<span id="cb361-3"><a href="#cb361-3" aria-hidden="true" tabindex="-1"></a>query ((<span class="dt">MkPerson</span> name age town state profession)<span class="op">:</span>xs)</span>
31613161
<span id="cb361-4"><a href="#cb361-4" aria-hidden="true" tabindex="-1"></a> <span class="op">|</span> state <span class="op">==</span> <span class="st">&quot;Finland&quot;</span> <span class="op">&amp;&amp;</span> profession <span class="op">==</span> <span class="st">&quot;Engineer&quot;</span> <span class="ot">=</span></span>
31623162
<span id="cb361-5"><a href="#cb361-5" aria-hidden="true" tabindex="-1"></a> (<span class="dt">MkPerson</span> name age town state profession) <span class="op">:</span> query xs</span>
31633163
<span id="cb361-6"><a href="#cb361-6" aria-hidden="true" tabindex="-1"></a> <span class="op">|</span> <span class="fu">otherwise</span> <span class="ot">=</span> query xs</span></code></pre></div>

0 commit comments

Comments
 (0)