web/request.py
changeset 8239 c6cdd060212e
parent 8190 2a3c1b787688
parent 8238 087bb529035c
child 8271 3bd9b317b1d8
--- a/web/request.py	Tue Feb 14 09:39:44 2012 +0100
+++ b/web/request.py	Thu Feb 16 14:15:37 2012 +0100
@@ -63,7 +63,7 @@
     * if the parameter is already a list or tuple, just skip internal
       markers
 
-    if pop is True, the parameter is removed from the form dictionnary
+    if pop is True, the parameter is removed from the form dictionary
     """
     if pop:
         try:
@@ -97,7 +97,7 @@
         self.html_headers = HTMLHead(self)
         # form parameters
         self.setup_params(form)
-        # dictionnary that may be used to store request data that has to be
+        # dictionary that may be used to store request data that has to be
         # shared among various components used to publish the request (views,
         # controller, application...)
         self.data = {}
@@ -263,7 +263,7 @@
         * if the parameter is already a list or tuple, just skip internal
           markers
 
-        if pop is True, the parameter is removed from the form dictionnary
+        if pop is True, the parameter is removed from the form dictionary
         """
         if form is None:
             form = self.form