From c86a5c4c1c498437fd829d0d9dff2c4256545850 Mon Sep 17 00:00:00 2001 From: Sup Yut Sum Date: Sat, 16 Mar 2013 07:55:22 +0800 Subject: [PATCH] diff-xls.js: fix typo in comment Based on TortoiseSVN revision 24000 Signed-off-by: Sup Yut Sum --- contrib/other/diff-scripts/diff-xls.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/contrib/other/diff-scripts/diff-xls.js b/contrib/other/diff-scripts/diff-xls.js index 9051fee8d..4a0a1059a 100644 --- a/contrib/other/diff-scripts/diff-xls.js +++ b/contrib/other/diff-scripts/diff-xls.js @@ -260,15 +260,13 @@ function UnhideWorksheet(objWorksheet) } } -// Generate Aubolute Reference Formula of Worksheet. - +// Generate Absolute Reference Formula of Worksheet. function ToAbsoluteReference(objWorksheet) { return "[" + objWorksheet.Parent.Name + "]" + objWorksheet.Name; } // Accumulate a warning message. - function StoreWarning(sMessage) { aWarningMessages[aWarningMessages.length] = sMessage; @@ -276,7 +274,6 @@ function StoreWarning(sMessage) // Show accumulated warning messages if exist. // To avoid make huge message dialog, this limits message count to show. - function ShowWarning() { if (aWarningMessages.length === 0) -- 2.11.4.GIT