summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hellkamp <marc@gsites.de>2011-09-23 12:20:26 -0700
committerMarcel Hellkamp <marc@gsites.de>2011-09-23 12:20:26 -0700
commit0c73844631ab18aa9880a18ece32d8d62cf85b93 (patch)
tree2ef0025f41b4e41b09ef9ebd760f8c9a79ec2477
parent56dbafdf2db7b20029faf02158c6852069e5f8df (diff)
parent766fc74ab7409cfdb0ae40e68ffe9ead5c878533 (diff)
downloadbottle-0c73844631ab18aa9880a18ece32d8d62cf85b93.tar.gz
Merge pull request #225 from Alexis-D/master
Fix typo in documentation (Ignore trailing slashes)
-rwxr-xr-xdocs/recipes.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/recipes.rst b/docs/recipes.rst
index 64ffbc1..0ecf074 100755
--- a/docs/recipes.rst
+++ b/docs/recipes.rst
@@ -99,7 +99,7 @@ or add a WSGI middleware that strips trailing slashes from all URLs::
app = bottle.app()
myapp = StripPathMiddleware(app)
- bottle.run(app=appmy)
+ bottle.run(app=myapp)
.. rubric:: Footnotes