Browse Source

Fixes typo in examples

Mher Movsisyan 13 years ago
parent
commit
b44b3b8f3d
1 changed files with 1 additions and 1 deletions
  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: