summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Binet <binet.bruno@gmail.com>2011-10-13 01:50:19 +0300
committerBruno Binet <binet.bruno@gmail.com>2011-10-13 01:50:19 +0300
commitc83d57fa5cc66e81d2da53d6322d9b1ac656466f (patch)
tree015cab5e395424b7ce520ef1fde892442b3a8170
parentd484fc14bc1fa4183f11bba105fdedd037639789 (diff)
downloadpyramid-c83d57fa5cc66e81d2da53d6322d9b1ac656466f.tar.gz
pyramid-c83d57fa5cc66e81d2da53d6322d9b1ac656466f.tar.bz2
pyramid-c83d57fa5cc66e81d2da53d6322d9b1ac656466f.zip
fix typo in docstring: s/current_static_url/static_url/
-rw-r--r--pyramid/url.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/url.py b/pyramid/url.py
index 7a7dd3b4c..862d48b82 100644
--- a/pyramid/url.py
+++ b/pyramid/url.py
@@ -380,7 +380,7 @@ class URLMethodsMixin(object):
and port) for a static resource.
This function accepts the same argument as
- :meth:`pyramid.request.Request.current_static_url` and performs the
+ :meth:`pyramid.request.Request.static_url` and performs the
same duty. It just omits the host, port, and scheme information in
the return value; only the script_name, path, query parameters, and
anchor data are present in the returned string.