소스 검색

Fixes typo in examples

Mher Movsisyan 13 년 전
부모
커밋
b44b3b8f3d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/internals/app-overview.rst

+ 1 - 1
docs/internals/app-overview.rst

@@ -18,7 +18,7 @@ Creating a Celery instance::
     >>> from celery import Celery
     >>> celery = Celery()
     >>> celery.config_from_object("celeryconfig")
-    >>> celery.config.from_envvar("CELERY_CONFIG_MODULE")
+    >>> celery.config_from_envvar("CELERY_CONFIG_MODULE")
 
 
 Creating tasks: