diff --git a/django/contrib/sitemaps/management/commands/ping_google.py b/django/contrib/sitemaps/management/commands/ping_google.py
index afff04b..7fa1690 100644
a
|
b
|
from django.contrib.sitemaps import ping_google
|
3 | 3 | |
4 | 4 | |
5 | 5 | class Command(BaseCommand): |
6 | | help = "Ping google with an updated sitemap, pass optional url of sitemap" |
| 6 | help = "Ping Google with an updated sitemap, pass optional url of sitemap" |
7 | 7 | |
8 | 8 | def execute(self, *args, **options): |
9 | 9 | if len(args) == 1: |
diff --git a/docs/ref/contrib/sitemaps.txt b/docs/ref/contrib/sitemaps.txt
index b58b55c..eb29c6c 100644
a
|
b
|
Pinging Google via `manage.py`
|
346 | 346 | .. versionadded:: 1.0 |
347 | 347 | |
348 | 348 | Once the sitemaps application is added to your project, you may also |
349 | | ping the Google server's through the command line manage.py interface:: |
| 349 | ping Google using the ``ping_google`` management command:: |
350 | 350 | |
351 | 351 | python manage.py ping_google [/sitemap.xml] |