Skip to content

Commit dad7904

Browse files
committed
insert space between colon and type in last few places
1 parent 2c89375 commit dad7904

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

_overviews/cheatsheets/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,18 +93,18 @@ permalink: /cheatsheets/index.html
9393
<tr>
9494
<td><pre class="highlight"><code>val zscore =
9595
(mean: R, sd: R) =&gt;
96-
(x:R) =&gt;
96+
(x: R) =&gt;
9797
(x - mean) / sd</code></pre></td>
9898
<td>Currying, obvious syntax.</td>
9999
</tr>
100100
<tr>
101-
<td><pre class="highlight"><code>def zscore(mean:R, sd:R) =
102-
(x:R) =&gt;
101+
<td><pre class="highlight"><code>def zscore(mean: R, sd: R) =
102+
(x: R) =&gt;
103103
(x - mean) / sd</code></pre></td>
104104
<td>Currying, obvious syntax.</td>
105105
</tr>
106106
<tr>
107-
<td><pre class="highlight"><code>def zscore(mean:R, sd:R)(x:R) =
107+
<td><pre class="highlight"><code>def zscore(mean: R, sd: R)(x: R) =
108108
(x - mean) / sd</code></pre></td>
109109
<td>Currying, sugar syntax. But then:</td>
110110
</tr>

0 commit comments

Comments
 (0)