[prev in list] [next in list] [prev in thread] [next in thread] 

List:       php-doc-cvs
Subject:    [DOC-CVS] =?utf-8?q?svn:_/phpdoc/en/trunk/reference/yaf/_yaf-bootstrap-abstract.xml_yaf-loader.xml_y
From:       Tyson_Andre <tandre () php ! net>
Date:       2019-02-24 20:38:06
Message-ID: svn-tandre-1551040686-346894-1419368297 () svn ! php ! net
[Download RAW message or body]

tandre                                   Sun, 24 Feb 2019 20:38:06 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=346894

Log:
Fix some typos in documentation of yaf

Changed paths:
    U   phpdoc/en/trunk/reference/yaf/yaf-bootstrap-abstract.xml
    U   phpdoc/en/trunk/reference/yaf/yaf-loader.xml
    U   phpdoc/en/trunk/reference/yaf/yaf-plugin-abstract.xml
    U   phpdoc/en/trunk/reference/yaf/yaf-request-http.xml
    U   phpdoc/en/trunk/reference/yaf/yaf-route-map.xml
    U   phpdoc/en/trunk/reference/yaf/yaf-route-static.xml
    U   phpdoc/en/trunk/reference/yaf/yaf-router.xml
    U   phpdoc/en/trunk/reference/yaf/yaf-view-interface.xml

Modified: phpdoc/en/trunk/reference/yaf/yaf-bootstrap-abstract.xml
===================================================================
--- phpdoc/en/trunk/reference/yaf/yaf-bootstrap-abstract.xml	2019-02-24 19:07:53 UTC \
                (rev 346893)
+++ phpdoc/en/trunk/reference/yaf/yaf-bootstrap-abstract.xml	2019-02-24 20:38:06 UTC \
(rev 346894) @@ -12,7 +12,7 @@
   <section xml:id="yaf-bootstrap-abstract.intro">
    &reftitle.intro;
    <para>
-     Bootstrap is a mechanism used to do some intial config before a
+     Bootstrap is a mechanism used to do some initial config before a
      Application run.
    </para>
    <para>

Modified: phpdoc/en/trunk/reference/yaf/yaf-loader.xml
===================================================================
--- phpdoc/en/trunk/reference/yaf/yaf-loader.xml	2019-02-24 19:07:53 UTC (rev 346893)
+++ phpdoc/en/trunk/reference/yaf/yaf-loader.xml	2019-02-24 20:38:06 UTC (rev 346894)
@@ -27,8 +27,8 @@
     config is On <methodname>Yaf_Loader::autoload</methodname> will return
     &false;, thus give the chance to other autoload function. if it is Off
     (by default), <methodname>Yaf_Loader::autoload</methodname> will return
-    &true;, and more important is that a very usefull warning will be triggerd
-    (very usefull to find out why a class could not be loaded).
+    &true;, and more important is that a very useful warning will be triggered
+    (very useful to find out why a class could not be loaded).
     <note>
      <para>
       Please keep yaf.use_spl_autoload Off unless there is some library have
@@ -68,7 +68,7 @@
      </programlisting>
     </example>

-    Assuming the following local name space registerd:
+    Assuming the following local name space is registered:
     <example>
      <title>Register localnamespace</title>
      <programlisting role="php">
@@ -116,7 +116,7 @@
   </para>

   <para>
-    You may noticed that all the folder wth the first letter capitalized, you can \
make them +    You may noticed that all the folder with the first letter capitalized, \
                you can make them
     lowercase by set <link linkend="ini.yaf.lowcase-path">yaf.lowcase_path</link> = \
On in php.ini  </para>


Modified: phpdoc/en/trunk/reference/yaf/yaf-plugin-abstract.xml
===================================================================
--- phpdoc/en/trunk/reference/yaf/yaf-plugin-abstract.xml	2019-02-24 19:07:53 UTC \
                (rev 346893)
+++ phpdoc/en/trunk/reference/yaf/yaf-plugin-abstract.xml	2019-02-24 20:38:06 UTC \
(rev 346894) @@ -22,7 +22,7 @@
    <para>
      A plugin could be loaded into Yaf by using
      <methodname>Yaf_Dispatcher::registerPlugin</methodname>,  after
-     registerd, All the methods which the plugin implemented according to this
+     registering, All the methods which the plugin implemented according to this
      interface, will be called at the proper time.
    </para>
   </section>
@@ -65,8 +65,8 @@
             var_dump("postDispatch");
         }
         public function dispatchLoopShutdown(Yaf_Request_Abstract $request, \
                Yaf_Response_Abstract $response) {
-            /* final hoook
-               in this hook user can do loging or implement layout */
+            /* final hook
+               in this hook user can do logging or implement layout */
             var_dump("dispatchLoopShutdown");
         }
    }

Modified: phpdoc/en/trunk/reference/yaf/yaf-request-http.xml
===================================================================
--- phpdoc/en/trunk/reference/yaf/yaf-request-http.xml	2019-02-24 19:07:53 UTC (rev \
                346893)
+++ phpdoc/en/trunk/reference/yaf/yaf-request-http.xml	2019-02-24 20:38:06 UTC (rev \
346894) @@ -14,7 +14,7 @@
    <para>
     Any request from client is initialized as a
     <classname>Yaf_Request_Http</classname>.
-    you can get the rquest information like, uri query and
+    you can get the request information like, uri query and
     post parameters via methods of this class.
     <note>
      <para>

Modified: phpdoc/en/trunk/reference/yaf/yaf-route-map.xml
===================================================================
--- phpdoc/en/trunk/reference/yaf/yaf-route-map.xml	2019-02-24 19:07:53 UTC (rev \
                346893)
+++ phpdoc/en/trunk/reference/yaf/yaf-route-map.xml	2019-02-24 20:38:06 UTC (rev \
346894) @@ -15,7 +15,7 @@
      <classname>Yaf_Route_Map</classname> is a built-in route, it simply
      convert a URI endpoint (that part of the URI which comes after the
      base URI: see <methodname>Yaf_Request_Abstract::setBaseUri</methodname>)
-     to a controller name or action name(depends on the paramter passed to
+     to a controller name or action name(depends on the parameter passed to
      <methodname>Yaf_Route_Map::__construct</methodname>) in following rule:
      A => controller A.
      A/B/C => controller A_B_C.
@@ -24,8 +24,8 @@

     <para>
      If the second parameter of
-     <methodname>Yaf_Route_Map::__construct</methodname> is specificed, then
-     only the part before delimeter of URI will used to routing, the part after
+     <methodname>Yaf_Route_Map::__construct</methodname> is specified, then
+     only the part before delimiter of URI will used to routing, the part after
      it is used to routing request parameters (see the example section of
      <methodname>Yaf_Route_Map::__construct</methodname>).
    </para>

Modified: phpdoc/en/trunk/reference/yaf/yaf-route-static.xml
===================================================================
--- phpdoc/en/trunk/reference/yaf/yaf-route-static.xml	2019-02-24 19:07:53 UTC (rev \
                346893)
+++ phpdoc/en/trunk/reference/yaf/yaf-route-static.xml	2019-02-24 20:38:06 UTC (rev \
346894) @@ -20,7 +20,7 @@
      80% requirement.
    </para>
    <para>
-     please *NOTE* that it is unecessary to instance a \
<classname>Yaf_Route_Static</classname>, also +     please *NOTE* that it is \
                unnecessary to instance a <classname>Yaf_Route_Static</classname>, \
                also
      unecesary to add it into <classname>Yaf_Router</classname>'s routes stack,
      since there is always be one in <classname>Yaf_Router</classname>'s
      routes stack, and always be called at the last time.

Modified: phpdoc/en/trunk/reference/yaf/yaf-router.xml
===================================================================
--- phpdoc/en/trunk/reference/yaf/yaf-router.xml	2019-02-24 19:07:53 UTC (rev 346893)
+++ phpdoc/en/trunk/reference/yaf/yaf-router.xml	2019-02-24 20:38:06 UTC (rev 346894)
@@ -97,7 +97,7 @@
     <note>
      <para>
       Module name must be defined in config, considering \
                application.module="Index,Foo,Bar",
-      in this case, only index, foo and bar can be considerd as a module name.
+      in this case, only index, foo and bar can be considered as a module name.
       if doesn't config, there is only one module named "Index".
      </para>
     </note>

Modified: phpdoc/en/trunk/reference/yaf/yaf-view-interface.xml
===================================================================
--- phpdoc/en/trunk/reference/yaf/yaf-view-interface.xml	2019-02-24 19:07:53 UTC (rev \
                346893)
+++ phpdoc/en/trunk/reference/yaf/yaf-view-interface.xml	2019-02-24 20:38:06 UTC (rev \
346894) @@ -12,8 +12,8 @@
   <section xml:id="yaf-view-interface.intro">
    &reftitle.intro;
    <para>
-    Yaf provides a ability for developers to use coustom view engine instead
-    of build-in engine which is <classname>Yaf_View_Simple</classname>. There
+    Yaf provides a ability for developers to use custom view engine instead
+    of built-in engine which is <classname>Yaf_View_Simple</classname>. There
     is a example to explain how to do this, please see
     <methodname>Yaf_Dispatcher::setView</methodname>.
    </para>



-- 
PHP Documentation Commits Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic