Jelajahi Sumber

[ZF-8778] Spelling error

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@20210 44c647ce-9c0f-0410-b52a-842ac1e357ba
yoshida@zend.co.jp 16 tahun lalu
induk
melakukan
f7ddd76ec8
2 mengubah file dengan 6 tambahan dan 6 penghapusan
  1. 5 5
      library/Zend/View/Abstract.php
  2. 1 1
      library/Zend/View/Interface.php

+ 5 - 5
library/Zend/View/Abstract.php

@@ -19,13 +19,13 @@
  * @version    $Id$
  */
 
-/** Zend_Loader */
+/** @see Zend_Loader */
 require_once 'Zend/Loader.php';
 
-/** Zend_Loader_PluginLoader */
+/** @see Zend_Loader_PluginLoader */
 require_once 'Zend/Loader/PluginLoader.php';
 
-/** Zend_View_Interface */
+/** @see Zend_View_Interface */
 require_once 'Zend/View/Interface.php';
 
 /**
@@ -561,7 +561,7 @@ abstract class Zend_View_Abstract implements Zend_View_Interface
     {
         return $this->getPluginLoader('helper')->getPaths();
     }
-    
+
     /**
      * Registers a helper object, bypassing plugin loader
      *
@@ -867,7 +867,7 @@ abstract class Zend_View_Abstract implements Zend_View_Interface
     /**
      * Processes a view script and returns the output.
      *
-     * @param string $name The script script name to process.
+     * @param string $name The script name to process.
      * @return string The script output.
      */
     public function render($name)

+ 1 - 1
library/Zend/View/Interface.php

@@ -130,7 +130,7 @@ interface Zend_View_Interface
     /**
      * Processes a view script and returns the output.
      *
-     * @param string $name The script script name to process.
+     * @param string $name The script name to process.
      * @return string The script output.
      */
     public function render($name);