summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrédéric Junod <frederic.junod@camptocamp.com>2012-06-26 13:26:49 +0300
committerFrédéric Junod <frederic.junod@camptocamp.com>2012-06-26 13:26:49 +0300
commitf40226d6078536703cd7aa19c9e47e60ba30ca9a (patch)
tree4cacdfea8f8dfdf7c95fb678bc88868970e85ff1
parent70c14a5491f7c12887f348ce8f7b7cfeab3e68e4 (diff)
downloadbottle-f40226d6078536703cd7aa19c9e47e60ba30ca9a.tar.gz
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()