소스 검색

Remove bad wording

Ask Solem 13 년 전
부모
커밋
9d818791cd
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      docs/getting-started/first-steps-with-celery.rst

+ 3 - 3
docs/getting-started/first-steps-with-celery.rst

@@ -6,7 +6,7 @@
 ========================
 
 Celery is a task queue with batteries included.
-It is easy to use, so that you can get started without learning
+It is easy to use so that you can get started without learning
 the full complexities of the problem it solves. It is designed
 around best practices so that your product can scale
 and integrate with other languages, and it comes with the
@@ -331,8 +331,8 @@ instead, so that only 10 tasks of this type can execute in a minute
         "tasks.add": {"rate_limit": "10/m"}
     }
 
-But in fact, if you are using one of RabbitMQ, Redis or MongoDB as the
-broker then you can actually direct the workers to set new rate limit
+If you are using RabbitMQ, Redis or MongoDB as the
+broker then you can also direct the workers to set new rate limit
 for the task at runtime::
 
     $ python tasks.py rate_limit tasks.add 10/m