diff options
| author | Michael Merickel <michael@merickel.org> | 2016-11-19 00:27:51 -0600 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2016-11-19 00:27:51 -0600 |
| commit | 7fe6c3435999bf9d6cebefeee4268846dff9b444 (patch) | |
| tree | 5e2e18b4379c5444770e5c14c90d1ee8b83a1a66 | |
| parent | 7764d4ab81e52b6702ae1921fbe5ebde2e2e4b2e (diff) | |
| download | pyramid-7fe6c3435999bf9d6cebefeee4268846dff9b444.tar.gz pyramid-7fe6c3435999bf9d6cebefeee4268846dff9b444.tar.bz2 pyramid-7fe6c3435999bf9d6cebefeee4268846dff9b444.zip | |
fix function reference in request.resource_url docs
| -rw-r--r-- | pyramid/url.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/url.py b/pyramid/url.py index 7c8e401d0..646cc857d 100644 --- a/pyramid/url.py +++ b/pyramid/url.py @@ -364,7 +364,7 @@ class URLMethodsMixin(object): of ``query`` may be a sequence of two-tuples *or* a data structure with an ``.items()`` method that returns a sequence of two-tuples (presumably a dictionary). This data structure will be turned into a - query string per the documentation of :func:``pyramid.url.urlencode`` + query string per the documentation of :func:`pyramid.url.urlencode` function. This will produce a query string in the ``x-www-form-urlencoded`` encoding. A non-``x-www-form-urlencoded`` query string may be used by passing a *string* value as ``query`` in |
