Browse Source

Documentation typo. Applied patch from Christopher Thomas (cwt137). Fixes ZF-9639

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@22468 44c647ce-9c0f-0410-b52a-842ac1e357ba
padraic 15 years ago
parent
commit
e557acb398
1 changed files with 4 additions and 4 deletions
  1. 4 4
      documentation/manual/en/module_specs/Zend_XmlRpc_Server.xml

+ 4 - 4
documentation/manual/en/module_specs/Zend_XmlRpc_Server.xml

@@ -697,21 +697,21 @@ echo $server->handle($request);
                 extension <code>ext/dom</code> to generate it's
                 <acronym>XML</acronym> output. While <code>ext/dom</code> is
                 available on a lot of hosts it is not exactly the fastest.
-                Benchmarks have shown, that <classname>XMLWriter</classname>
+                Benchmarks have shown, that <classname>XmlWriter</classname>
                 from <code>ext/xmlwriter</code> performs better.
             </para>
 
             <para>
                 If <code>ext/xmlwriter</code> is available on your host, you can
-                select a the <classname>XMLWriter</classname>-based generator
+                select a the <classname>XmlWriter</classname>-based generator
                 to leaverage the performance differences.
             </para>
 
             <programlisting language="php"><![CDATA[
 require_once 'Zend/XmlRpc/Server.php';
-require_once 'Zend/XmlRpc/Generator/XMLWriter.php';
+require_once 'Zend/XmlRpc/Generator/XmlWriter.php';
 
-Zend_XmlRpc_Value::setGenerator(new Zend_XmlRpc_Generator_XMLWriter());
+Zend_XmlRpc_Value::setGenerator(new Zend_XmlRpc_Generator_XmlWriter());
 
 $server = new Zend_XmlRpc_Server();
 ...