summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hellkamp <marc@gsites.de>2011-04-20 15:23:12 +0200
committerMarcel Hellkamp <marc@gsites.de>2011-04-20 15:23:12 +0200
commitbfcc4b496e3bc0e35f147249f114ad733c31ff07 (patch)
tree6867f0e9e219ba4a75aca63f1c7aa6d2fbcc1c89
parentfa7d37dd0f31ab357dedb706941836d91371bdd2 (diff)
downloadbottle-bfcc4b496e3bc0e35f147249f114ad733c31ff07.tar.gz
docs: Docstring typo.
-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.