dbapi.py
changeset 8239 c6cdd060212e
parent 8190 2a3c1b787688
parent 8238 087bb529035c
child 8268 c9babe49c1c1
--- a/dbapi.py	Tue Feb 14 09:39:44 2012 +0100
+++ b/dbapi.py	Thu Feb 16 14:15:37 2012 +0100
@@ -384,7 +384,7 @@
 
     @deprecated('[3.8] use direct access to req.session.data dictionary')
     def session_data(self):
-        """return a dictionnary containing session data"""
+        """return a dictionary containing session data"""
         return self.session.data
 
     @deprecated('[3.8] use direct access to req.session.data dictionary')
@@ -659,9 +659,9 @@
         """return value associated to key in the session's data dictionary or
         session's transaction's data if `txdata` is true.
 
-        If pop is True, value will be removed from the dictionnary.
+        If pop is True, value will be removed from the dictionary.
 
-        If key isn't defined in the dictionnary, value specified by the
+        If key isn't defined in the dictionary, value specified by the
         `default` argument will be returned.
         """
         return self._repo.get_shared_data(self.sessionid, key, default, pop, txdata)