diff --git a/src/file/paragraph/math/math-component.ts b/src/file/paragraph/math/math-component.ts index e38fdd36e3..ae30a7d3c6 100644 --- a/src/file/paragraph/math/math-component.ts +++ b/src/file/paragraph/math/math-component.ts @@ -2,8 +2,7 @@ import { MathAngledBrackets, MathCurlyBrackets, MathRoundBrackets, MathSquareBra import { MathFraction } from "./fraction"; import { MathFunction } from "./function"; import { MathRun } from "./math-run"; -import { MathSum } from "./n-ary"; -import { MathIntegral } from "./n-ary"; +import { MathSum, MathIntegral } from "./n-ary"; import { MathRadical } from "./radical"; import { MathSubScript, MathSubSuperScript, MathSuperScript } from "./script"; diff --git a/src/file/paragraph/math/n-ary/index.ts b/src/file/paragraph/math/n-ary/index.ts index 920d08de74..b255d17e21 100644 --- a/src/file/paragraph/math/n-ary/index.ts +++ b/src/file/paragraph/math/n-ary/index.ts @@ -4,5 +4,5 @@ export * from "./math-limit-location"; export * from "./math-n-ary-properties"; export * from "./math-sub-script"; export * from "./math-sum"; -export * from "./math-integral"; +export * from "./math-integral"; export * from "./math-super-script"; diff --git a/src/file/paragraph/math/n-ary/math-n-ary-properties.ts b/src/file/paragraph/math/n-ary/math-n-ary-properties.ts index 1163de7508..b8a491df39 100644 --- a/src/file/paragraph/math/n-ary/math-n-ary-properties.ts +++ b/src/file/paragraph/math/n-ary/math-n-ary-properties.ts @@ -10,7 +10,7 @@ export class MathNAryProperties extends XmlComponent { public constructor(accent: string, hasSuperScript: boolean, hasSubScript: boolean) { super("m:naryPr"); - if (!!accent){ + if (!!accent) { this.root.push(new MathAccentCharacter(accent)); } this.root.push(new MathLimitLocation());