Index: docs/templates.txt
===================================================================
--- docs/templates.txt	(revision 5308)
+++ docs/templates.txt	(working copy)
@@ -843,10 +843,10 @@
 should be comma-separated values that will be used as positional and keyword
 arguments in the URL. All arguments required by the URLconf should be present.
 
-For example, suppose you have a view, ``app_name.client``, whose URLconf takes
+For example, suppose you have a view, ``project_name.app_name.views.client``, whose URLconf takes
 a client ID. The URLconf line might look like this::
 
-    ('^client/(\d+)/$', 'app_name.client')
+    ('^client/(\d+)/$', 'project_name.app_name.views.client')
 
 If this app's URLconf is included into the project's URLconf under a path
 such as this::
@@ -855,7 +855,7 @@
 
 ...then, in a template, you can create a link to this view like this::
 
-    {% url app_name.client client.id %}
+    {% url project_name.app_name.views.client client.id %}
 
 The template tag will output the string ``/clients/client/123/``.
 
