summaryrefslogtreecommitdiff
path: root/oauthlib/oauth1
diff options
context:
space:
mode:
authorMatt McClure <matthewlmcclure@gmail.com>2013-05-02 17:00:07 -0400
committerMatt McClure <matthewlmcclure@gmail.com>2013-05-02 17:04:58 -0400
commit536425b37b0e7360ab83d53df8ed54f7254a3a25 (patch)
treeebb578060646c39904c2a5e610348e6d9d9b65c4 /oauthlib/oauth1
parent83b353eafabcb8ad130278464128583028ebdbc9 (diff)
downloadoauthlib-536425b37b0e7360ab83d53df8ed54f7254a3a25.tar.gz
Fix a copy-paste-o in a link to RFC 3986
Diffstat (limited to 'oauthlib/oauth1')
-rw-r--r--oauthlib/oauth1/rfc5849/signature.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/oauthlib/oauth1/rfc5849/signature.py b/oauthlib/oauth1/rfc5849/signature.py
index d9d11a8..790893c 100644
--- a/oauthlib/oauth1/rfc5849/signature.py
+++ b/oauthlib/oauth1/rfc5849/signature.py
@@ -129,7 +129,7 @@ def normalize_base_string_uri(uri):
# are included by constructing an "http" or "https" URI representing
# the request resource (without the query or fragment) as follows:
#
- # .. _`RFC2616`: http://tools.ietf.org/html/rfc3986
+ # .. _`RFC3986`: http://tools.ietf.org/html/rfc3986
# 1. The scheme and host MUST be in lowercase.
scheme = scheme.lower()