summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbottle.py2
-rwxr-xr-xsetup.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/bottle.py b/bottle.py
index 6deac8a..0707132 100755
--- a/bottle.py
+++ b/bottle.py
@@ -208,7 +208,7 @@ class RouteSyntaxError(RouteError):
class RouteBuildError(RouteError):
- """ The route could not been build """
+ """ The route could not been built """
class Route(object):
diff --git a/setup.py b/setup.py
index d6af56c..a250a01 100755
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,7 @@ for line in open(os.path.join(os.path.dirname(sys.argv[0]),'bottle.py')):
setup(name='bottle',
version=version,
description='Fast and simple WSGI-framework for small web-applications.',
- long_description='Bottle is a fast and simple micro-framework for small web-applications. It offers request dispatching (Routes) with url parameter support, Templates, a build-in HTTP Server and adapters for many third party WSGI/HTTP-server and template engines. All in a single file and with no dependencies other than the Python Standard Library.',
+ long_description='Bottle is a fast and simple micro-framework for small web-applications. It offers request dispatching (Routes) with url parameter support, Templates, a built-in HTTP Server and adapters for many third party WSGI/HTTP-server and template engines. All in a single file and with no dependencies other than the Python Standard Library.',
author='Marcel Hellkamp',
author_email='marc@gsites.de',
url='http://bottle.paws.de/',