Browse Source

[MANUAL] English:

- erased endline spaces

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@19992 44c647ce-9c0f-0410-b52a-842ac1e357ba
thomas 16 years ago
parent
commit
3bc38b8c8c

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

@@ -7,7 +7,7 @@
         The Queue service stores messages that may be read by any client who has access to the
         The Queue service stores messages that may be read by any client who has access to the
         storage account.
         storage account.
     </para>
     </para>
-    
+
     <para>
     <para>
         A queue can contain an unlimited number of messages, each of which can be up to 8 KB in
         A queue can contain an unlimited number of messages, each of which can be up to 8 KB in
         size. Messages are generally added to the end of the queue and retrieved from the front of
         size. Messages are generally added to the end of the queue and retrieved from the front of
@@ -83,7 +83,7 @@ $storageClient->deleteQueue('testqueue');
 $storageClient = new Zend_Service_WindowsAzure_Storage_Queue();
 $storageClient = new Zend_Service_WindowsAzure_Storage_Queue();
 
 
 // 3600 = time-to-live of the message, if omitted defaults to 7 days
 // 3600 = time-to-live of the message, if omitted defaults to 7 days
-$storageClient->putMessage('testqueue', 'This is a test message', 3600); 
+$storageClient->putMessage('testqueue', 'This is a test message', 3600);
 ]]></programlisting>
 ]]></programlisting>
             </example>
             </example>
         </sect3>
         </sect3>
@@ -110,7 +110,7 @@ foreach ($messages as $message) {
 }
 }
 ]]></programlisting>
 ]]></programlisting>
             </example>
             </example>
-            
+
             <para>
             <para>
                 The messages that are read using <methodname>getMessages()</methodname> will be
                 The messages that are read using <methodname>getMessages()</methodname> will be
                 invisible in the queue for 30 seconds, after which the messages will re-appear in
                 invisible in the queue for 30 seconds, after which the messages will re-appear in
@@ -159,7 +159,7 @@ foreach ($messages as $message) {
 }
 }
 ]]></programlisting>
 ]]></programlisting>
             </example>
             </example>
-            
+
             <para>
             <para>
                 Note that messages that are read using <methodname>peekMessages()</methodname> will
                 Note that messages that are read using <methodname>peekMessages()</methodname> will
                 not become invisible in the queue, nor can they be marked as processed using the
                 not become invisible in the queue, nor can they be marked as processed using the