Skip to content

Commit 80fb3c5

Browse files
committed
use ≤ instead of <= in the definition of AggregateJoin
1 parent 43c5634 commit 80fb3c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9525,11 +9525,11 @@ <h4>Aggregate Algebra</h4>
95259525
<p><b>Definition: AggregateJoin</b></p>
95269526
<p>Let S<sub>1</sub>, ..., S<sub>n</sub> be a list of sets, where each set
95279527
S<sub>i</sub> contains key to (aggregated) value maps as produced by Aggregate.</p>
9528-
<p>Let K = { key | key in dom(S<sub>j</sub>) for some 1 &lt;= j &lt;= n } be the set of
9528+
<p>Let K = { key | key in dom(S<sub>j</sub>) for some 1 &le; j &le; n } be the set of
95299529
keys, then<br>
95309530
AggregateJoin(S<sub>1</sub>, ..., S<sub>n</sub>) = { agg<sub>1</sub>→val<sub>1</sub>,
95319531
..., agg<sub>n</sub>→val<sub>n</sub> | key in K and key→val<sub>i</sub> in
9532-
S<sub>i</sub> for each 1 &lt;= i &lt;= n }</p>
9532+
S<sub>i</sub> for each 1 &le; i &le; n }</p>
95339533
</div>
95349534
<p>Flatten is a function which is used to collapse a sequence of lists into a single list.
95359535
For example, [(1,&nbsp;2), (3,&nbsp;4)] becomes (1, 2, 3, 4).</p>

0 commit comments

Comments
 (0)