From 042f55009c4ceee5532a47ab840924b80ad5d5b7 Mon Sep 17 00:00:00 2001 From: "Ghislain B." Date: Thu, 30 Apr 2026 17:31:50 -0400 Subject: [PATCH] chore: remove unused comment and fix typos --- packages/excel-builder-vanilla/src/Excel/Workbook.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/excel-builder-vanilla/src/Excel/Workbook.ts b/packages/excel-builder-vanilla/src/Excel/Workbook.ts index 453671c..020f37b 100644 --- a/packages/excel-builder-vanilla/src/Excel/Workbook.ts +++ b/packages/excel-builder-vanilla/src/Excel/Workbook.ts @@ -22,7 +22,6 @@ export interface MediaMeta { /** * @module Excel/Workbook */ -/* globals console: true */ export class Workbook { id = uniqueId('Workbook'); styleSheet = new StyleSheet(); @@ -103,7 +102,7 @@ export class Workbook { if (this.printTitles[inSheet] == null) { this.printTitles[inSheet] = {}; } - //WARN: this does not handle AA, AB, etc. + // WARN: this does not handle AA, AB, etc. this.printTitles[inSheet].left = String.fromCharCode(64 + inRowCount); } @@ -251,7 +250,7 @@ export class Workbook { } wb.appendChild(sheets); - //now to add repeating rows + // now to add repeating rows const definedNames = Util.createElement(doc, 'definedNames'); let ctr = 0; for (const name in this.printTitles) {