summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hellkamp <marc@gsites.de>2012-06-26 03:37:51 -0700
committerMarcel Hellkamp <marc@gsites.de>2012-06-26 03:37:51 -0700
commit416ddf96f0b6b3e04aec8ca43e1237cdb5a05bd3 (patch)
tree009ab65b3e7f3fd281725a8f27b60b13b0602999
parenta3dcff4cd676cac37e513c7e044e5be419da175d (diff)
parentf40226d6078536703cd7aa19c9e47e60ba30ca9a (diff)
downloadbottle-416ddf96f0b6b3e04aec8ca43e1237cdb5a05bd3.tar.gz
Merge pull request #346 from fredj/patch-1
Fix typo in Plugin Development Guide (stopwatch example)
-rwxr-xr-xdocs/plugindev.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/plugindev.rst b/docs/plugindev.rst
index 22d7a03..1649149 100755
--- a/docs/plugindev.rst
+++ b/docs/plugindev.rst
@@ -23,7 +23,7 @@ Of course, this is just a simplification. Plugins can do a lot more than just de
import time
def stopwatch(callback):
- def wrapper(*args, **kawrgs):
+ def wrapper(*args, **kwargs):
start = time.time()
body = callback(*args, **kwargs)
end = time.time()