Pārlūkot izejas kodu

Fixed more typos in the user guide

Ask Solem 15 gadi atpakaļ
vecāks
revīzija
2443b5e314
1 mainītis faili ar 3 papildinājumiem un 4 dzēšanām
  1. 3 4
      docs/userguide/executing.rst

+ 3 - 4
docs/userguide/executing.rst

@@ -53,7 +53,7 @@ specified date and time has passed, but not necessarily at that exact time.
 While ``countdown`` is an integer, ``eta`` must be a ``datetime`` object,
 While ``countdown`` is an integer, ``eta`` must be a ``datetime`` object,
 specifying an exact date and time in the future. This is good if you already
 specifying an exact date and time in the future. This is good if you already
 have a ``datatime`` object and need to modify it with a ``timedelta``, or when
 have a ``datatime`` object and need to modify it with a ``timedelta``, or when
-specifing the time in seconds is not very readable.
+using time in seconds is not very readable.
 
 
 .. code-block:: python
 .. code-block:: python
 
 
@@ -97,7 +97,7 @@ when sending more than one task at a time, as ``apply_async`` establishes and
 closes a connection every time.
 closes a connection every time.
 
 
 If you need to send more than one task at the same time, it's a good idea to
 If you need to send more than one task at the same time, it's a good idea to
-establish the connectin yourself and pass it to ``apply_async``:
+establish the connection yourself and pass it to ``apply_async``:
 
 
 .. code-block:: python
 .. code-block:: python
 
 
@@ -117,8 +117,7 @@ establish the connectin yourself and pass it to ``apply_async``:
     print([res.get() for res in results])
     print([res.get() for res in results])
 
 
 
 
-In python 2.5 and above you can use the ``with`` statement with carrot
-connections:
+In Python 2.5 and above, you can use the ``with`` statement:
 
 
 .. code-block:: python
 .. code-block:: python