fixing documenting errors and typos

git-svn-id: https://svn.php.net/repository/pear/packages/Spreadsheet_Excel_Writer/trunk@112230 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Xavier Noguer Gallego 2003-01-17 13:31:28 +00:00
parent b18e2e8525
commit 36feaad1fe
4 changed files with 9 additions and 8 deletions

View File

@ -58,6 +58,7 @@ class Spreadsheet_Excel_Writer extends Workbook
/** /**
* Send HTTP headers for the Excel file. * Send HTTP headers for the Excel file.
* *
* @param string $filename The filename to use for HTTP headers
* @access public * @access public
*/ */
function send($filename) function send($filename)

View File

@ -79,7 +79,7 @@ class Format extends PEAR
/** /**
* Index to the cell's color * Index to the cell's color
* @var * @var integer
*/ */
var $_color; var $_color;

View File

@ -55,7 +55,7 @@ class Workbook extends BIFFwriter
/** /**
* Formula parser * Formula parser
* @var object * @var object Parser
*/ */
var $_parser; var $_parser;
@ -111,7 +111,7 @@ class Workbook extends BIFFwriter
/** /**
* The default XF format. * The default XF format.
* @var object * @var object Format
*/ */
var $_tmp_format; var $_tmp_format;
@ -141,7 +141,7 @@ class Workbook extends BIFFwriter
/** /**
* The default format for URLs. * The default format for URLs.
* @var object * @var object Format
*/ */
var $_url_format; var $_url_format;

View File

@ -58,13 +58,13 @@ class Worksheet extends BIFFwriter
/** /**
* Reference to the (default) Format object for URLs * Reference to the (default) Format object for URLs
* @var object * @var object Format
*/ */
var $_url_format; var $_url_format;
/** /**
* Reference to the parser used for parsing formulas * Reference to the parser used for parsing formulas
* @var object * @var object Format
*/ */
var $_parser; var $_parser;
@ -916,7 +916,7 @@ class Worksheet extends BIFFwriter
* *
* @access public * @access public
* @param integer $width Maximun width of printed area in pages * @param integer $width Maximun width of printed area in pages
* @param integer $heigth Maximun heigth of printed area in pages * @param integer $height Maximun heigth of printed area in pages
* @see setPrintScale() * @see setPrintScale()
*/ */
function fitToPages($width, $height) function fitToPages($width, $height)
@ -1050,7 +1050,7 @@ class Worksheet extends BIFFwriter
/** /**
* Returns an index to the XF record in the workbook * Returns an index to the XF record in the workbook
* *
* @param mixed $format The optional XF format * @param mixed &$format The optional XF format
* @return integer The XF record index * @return integer The XF record index
*/ */
function _XF(&$format) function _XF(&$format)