소스 검색

Merge pull request #3000 from dentafrice/cm/fix_typo

Fixes doc typo in celery.contrib.batches
Ask Solem Hoel 9 년 전
부모
커밋
ab39039691
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      celery/contrib/batches.py

+ 1 - 1
celery/contrib/batches.py

@@ -17,7 +17,7 @@ Experimental task class that buffers messages and processes them as a list.
 **Simple Example**
 
 A click counter that flushes the buffer every 100 messages, and every
-seconds.  Does not do anything with the data, but can easily be modified
+10 seconds.  Does not do anything with the data, but can easily be modified
 to store it in a database.
 
 .. code-block:: python