diff --git a/Writer/Workbook.php b/Writer/Workbook.php index 6e1d277..58058e8 100644 --- a/Writer/Workbook.php +++ b/Writer/Workbook.php @@ -179,8 +179,7 @@ class Workbook extends BIFFwriter } /** - * Calls finalization methods and explicitly close the OLEwriter file - * handle. + * Calls finalization methods. * * @access public */ @@ -219,7 +218,6 @@ class Workbook extends BIFFwriter /** * Add a new worksheet to the Excel workbook. - * TODO: Add accessor for $this->{_sheetname} for international Excel versions. * * @access public * @param string $name the optional name of the worksheet @@ -258,8 +256,8 @@ class Workbook extends BIFFwriter } /** - * Add a new format to the Excel workbook. This adds an XF record and - * a FONT record. Also, pass any properties to the Format constructor. + * Add a new format to the Excel workbook. + * Also, pass any properties to the Format constructor. * * @access public * @param array $properties array with properties for initializing the format (see Format.php) diff --git a/Writer/Worksheet.php b/Writer/Worksheet.php index cb02386..3769223 100644 --- a/Writer/Worksheet.php +++ b/Writer/Worksheet.php @@ -554,8 +554,9 @@ class Worksheet extends BIFFwriter } /** - * Set this worksheet as the active worksheet, i.e. the worksheet that is - * displayed when the workbook is opened. Also set it as selected. + * Set this worksheet as the active worksheet, + * i.e. the worksheet that is displayed when the workbook is opened. + * Also set it as selected. * * @access public */ @@ -740,7 +741,7 @@ class Worksheet extends BIFFwriter } /** - * Center the page horinzontally. + * Center the page vertically. * * @access public * @param integer $center the optional value for centering. Defaults to 1 (center).