Skip to content

Commit 2abe078

Browse files
committed
Fix tslint issues
1 parent 3e26589 commit 2abe078

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mathjax3-ts/output/chtml/Wrappers/mtable.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ export class CHTMLmtable extends CHTMLWrapper {
133133
const cLines = this.getColumnAttributes('columnlines').slice(0, cMax).map(x => (x === 'none' ? 0 : .07));
134134
const rLines = this.getColumnAttributes('rowlines').slice(0, cMax).map(x => (x === 'none' ? 0 : .07));
135135
const a = this.font.params.axis_height;
136-
const h = H.concat(D,rLines).reduce((a, b) => a + b) + (frame ? .14 : 0) +
136+
const h = H.concat(D, rLines).reduce((a, b) => a + b) + (frame ? .14 : 0) +
137137
rSpace.map(x => parseFloat(x)).reduce((a, b) => a + b) + 2 * parseFloat(fSpace[1]);
138138
this.bbox.h = h / 2 + a;
139139
this.bbox.d = h / 2 - a;
@@ -378,7 +378,7 @@ export class CHTMLmtable extends CHTMLWrapper {
378378
*
379379
* @param{string[]} list The array of dimensions to be turned into em's
380380
* @param{nunber} n The number to divide each dimension by after converted
381-
* @return{string[]} The array of values converted to em's
381+
* @return{string[]} The array of values converted to em's
382382
*/
383383
protected convertLengths(list: string[], n: number = 1) {
384384
if (!list) return;

0 commit comments

Comments
 (0)