File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -93,18 +93,18 @@ permalink: /cheatsheets/index.html
93
93
<tr >
94
94
<td ><pre class =" highlight " ><code >val zscore =
95
95
(mean: R, sd: R) => ;
96
- (x: R ) => ;
96
+ (x: R) => ;
97
97
(x - mean) / sd</code ></pre ></td >
98
98
<td >Currying, obvious syntax.</td >
99
99
</tr >
100
100
<tr >
101
- <td ><pre class =" highlight " ><code >def zscore(mean: R , sd: R ) =
102
- (x: R ) => ;
101
+ <td ><pre class =" highlight " ><code >def zscore(mean: R, sd: R) =
102
+ (x: R) => ;
103
103
(x - mean) / sd</code ></pre ></td >
104
104
<td >Currying, obvious syntax.</td >
105
105
</tr >
106
106
<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) =
108
108
(x - mean) / sd</code ></pre ></td >
109
109
<td >Currying, sugar syntax. But then:</td >
110
110
</tr >
You can’t perform that action at this time.
0 commit comments