File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ This will happen automatically every time you commit.
43
43
- Exception: accept short names to adhere to mathematical convention
44
44
(e.g. ` A ` is a good name for a generic matrix when solving a system _ Ax = b_ ,
45
45
` i ` and ` j ` are good names for matrix indices,
46
- and ` m ` and ` n ` are good names for matrix dimensions)
46
+ and ` m ` and ` n ` are good names for matrix dimensions).
47
47
- Prefix private member variables with an underscore
48
48
- JavaScript consumers do not have the compiler to tell them they shouldn't be using the private
49
49
part of your class.
@@ -134,7 +134,7 @@ export class LoggingThing implements Thing {
134
134
* @public
135
135
*/
136
136
do(options : string []): void {
137
- options .forEach (option => console .log (option ));
137
+ options .forEach (( option ) => console .log (option ));
138
138
}
139
139
}
140
140
@@ -148,7 +148,7 @@ export class LoggingThing implements Thing {
148
148
* @public
149
149
*/
150
150
export function doTheThings(things : Thing [], options : string []): Thing | undefined {
151
- things .forEach (thing => thing .do (options ));
151
+ things .forEach (( thing ) => thing .do (options ));
152
152
return things .length > 0 ? things [0 ] : undefined ;
153
153
}
154
154
```
You can’t perform that action at this time.
0 commit comments