summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbottle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bottle.py b/bottle.py
index d6ccb26..c61477c 100755
--- a/bottle.py
+++ b/bottle.py
@@ -813,7 +813,7 @@ class Request(threading.local, DictMixin):
@DictProperty('environ', 'bottle.urlparts', read_only=True)
def urlparts(self):
- ''' Return a :cls:`urlparse.SplitResult` tuple that can be used
+ ''' Return a :class:`urlparse.SplitResult` tuple that can be used
to reconstruct the full URL as requested by the client.
The tuple contains: (scheme, host, path, query_string, fragment).
The fragment is always empty because it is not visible to the server.