소스 검색

[DOCUMENTATION] English:

- manual fixes (erased multiple whitespaces)

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@17508 44c647ce-9c0f-0410-b52a-842ac1e357ba
thomas 16 년 전
부모
커밋
dea1d1ea14

+ 3 - 3
documentation/manual/en/module_specs/Zend_Queue-Adapters.xml

@@ -510,7 +510,7 @@ $queue = Zend_Queue::factory('Db', $options);
                 <listitem>
                     <para>
                         <methodname>send()</methodname> - this method is perhaps the one method that
-                        diverges most from other adapters.  The <varname>$message</varname> argument
+                        diverges most from other adapters. The <varname>$message</varname> argument
                         may be one of three possible types, and will operate differently based on
                         the value passed:
                     </para>
@@ -535,7 +535,7 @@ $queue = Zend_Queue::factory('Db', $options);
                                 <listitem>
                                     <para>
                                         <varname>script</varname> - the name of the Job Queue script
-                                        to invoke.  (Required)
+                                        to invoke. (Required)
                                     </para>
                                 </listitem>
 
@@ -587,7 +587,7 @@ $queue = Zend_Queue::factory('Db', $options);
                                 <listitem>
                                     <para>
                                         <varname>end_time</varname> - an expiry time, past which the
-                                        job should not run.  If the job was set to run only once,
+                                        job should not run. If the job was set to run only once,
                                         and <varname>end_time</varname> has passed, then the job
                                         will not be executed. If the job was set to run on an
                                         interval, it will not execute again once

+ 1 - 1
documentation/manual/en/module_specs/Zend_Tool_Framework-Extending.xml

@@ -145,7 +145,7 @@ project.profile = some/path/to/some-directory
 ]]></programlisting>
 
             <para>
-                The only reserved ini prefix is the value "php".  The "php" prefix to values will be reserved to store
+                The only reserved ini prefix is the value "php". The "php" prefix to values will be reserved to store
                 names and values of runtime settable php values, such as <property>include_path</property> or
                 <property>error_reporting</property>. To override the <property>include_path</property> and
                 <property>error_reporting</property> with an ini value, a developer would set:

+ 3 - 3
documentation/manual/en/ref/coding_standard.xml

@@ -726,7 +726,7 @@ class Foo
                         linkend="coding-standard.php-file-formatting.max-line-length">maximum line
                         length</link>, you may introduce line breaks. Additional arguments to the
                     function or method must be indented one additional level beyond the function
-                    or method declaration.  A line break should then occur before the closing
+                    or method declaration. A line break should then occur before the closing
                     argument paren, which should then be placed on the same line as the opening
                     brace of the function or method with one space separating the two, and at the
                     same indentation level as the function or method declaration. The following is
@@ -1048,7 +1048,7 @@ switch ($numPeople) {
                 </para>
 
                 <para>
-                    The <property>@subpackage</property> annotation is optional.  If provided, it
+                    The <property>@subpackage</property> annotation is optional. If provided, it
                     should be the subcomponent name, minus the class prefix. In the example above,
                     the assumption is that the class in the file is either "Zend_Magic_Wand", or
                     uses that classname as part of its prefix.
@@ -1092,7 +1092,7 @@ switch ($numPeople) {
                 </para>
 
                 <para>
-                    The <property>@subpackage</property> annotation is optional.  If provided, it
+                    The <property>@subpackage</property> annotation is optional. If provided, it
                     should be the subcomponent name, minus the class prefix. In the example above,
                     the assumption is that the class described is either "Zend_Magic_Wand", or uses
                     that classname as part of its prefix.