浏览代码

[ZF-6714]Zend_Decorator not exists

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@15643 44c647ce-9c0f-0410-b52a-842ac1e357ba
yoshida@zend.co.jp 16 年之前
父节点
当前提交
dc9cc078ee
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      documentation/manual/en/module_specs/Zend_Form-Decorators.xml

+ 3 - 3
documentation/manual/en/module_specs/Zend_Form-Decorators.xml

@@ -141,12 +141,12 @@
 
         <para>
             Decorators need only implement
-            <classname>Zend_Decorator_Interface</classname>. The interface specifies the
+            <classname>Zend_Form_Decorator_Interface</classname>. The interface specifies the
             following:
         </para>
 
         <programlisting language="php"><![CDATA[
-interface Zend_Decorator_Interface
+interface Zend_Form_Decorator_Interface
 {
     public function __construct($options = null);
     public function setElement($element);
@@ -164,7 +164,7 @@ interface Zend_Decorator_Interface
 
         <para>
             To make this simpler, you can simply extend
-            <classname>Zend_Decorator_Abstract</classname>, which implements all methods
+            <classname>Zend_Form_Decorator_Abstract</classname>, which implements all methods
             except <code>render()</code>.
         </para>