changeset 12257:eb03c40ba74e octave-forge

Typo in comment line fixed
author prnienhuis
date Sun, 29 Dec 2013 22:39:36 +0000
parents c226af31d4ad
children 58f7ab2936d9
files main/io/inst/private/__OXS_spsh_info__.m
diffstat 1 files changed, 5 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/main/io/inst/private/__OXS_spsh_info__.m	Sun Dec 29 22:38:19 2013 +0000
+++ b/main/io/inst/private/__OXS_spsh_info__.m	Sun Dec 29 22:39:36 2013 +0000
@@ -22,15 +22,18 @@
 ## 2012-10-12 Moved into ./private
 ## 2012-10-24 Style fixes
 ## 2013-12-06 Updated copyright strings
+## 2012-12-29 Typo in comment line fixed
 
 function [sh_names] = __OXS_spsh_info__ (xls)
 
   sh_cnt = xls.workbook.getNumWorkSheets ();
-  sh_names = cell (sh_cnt, 2); nsrows = zeros (sh_cnt, 1);
+  sh_names = cell (sh_cnt, 2); 
+  nsrows = zeros (sh_cnt, 1);
   for ii=1:sh_cnt
     sh = xls.workbook.getWorkSheet (ii-1);   ## OpenXLS starts counting at 0 
     sh_names(ii, 1) = char (sh.getSheetName());
-    ## OpenXLS doesn't distinguish between worksheets and graph sheets
+    ## OpenXLS doesn't offer methods to distinguish between worksheets
+    ## and graph sheets
     [tr, lr, lc, rc] = getusedrange (xls, ii);
     if (tr)
       sh_names(ii, 2) = ...