소스 검색

Merge pull request #1759 from skovorodkin/master

Fix typo in docstring of utils.deprecated decorator
Ask Solem Hoel 11 년 전
부모
커밋
2028b696c5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      celery/utils/__init__.py

+ 1 - 1
celery/utils/__init__.py

@@ -96,7 +96,7 @@ def deprecated(deprecation=None, removal=None,
     :keyword deprecation: Version that marks first deprecation, if this
       argument is not set a ``PendingDeprecationWarning`` will be emitted
       instead.
-    :keyword removed:  Future version when this feature will be removed.
+    :keyword removal:  Future version when this feature will be removed.
     :keyword alternative:  Instructions for an alternative solution (if any).
     :keyword description: Description of what is being deprecated.