ZF-8778: Spelling error in Zend/View/Abstract.php
Description
Hello,
in file "Zend/View/Abstract.php" the docblock for "public function render($name)" contains a little spelling error. The word "script" appears twice in @param.
/**
* Processes a view script and returns the output.
*
* @param string $name The script script name to process.
* @return string The script output.
*/
Should be:
/**
* Processes a view script and returns the output.
*
* @param string $name The script name to process.
* @return string The script output.
*/
Nothing important, I just wanted to let you know.
Regards, Rene
Comments
Posted by Satoru Yoshida (satoruyoshida) on 2010-01-11T18:07:52.000+0000
Thank You for report, Rene Roesch.
Solved in SVN r20210. I found same issue on Zend/View/Interface.php , too.