app/soc/cache/base.py
changeset 1029 a312e7007811
parent 1017 6ad4fdb48840
child 1307 091a21cf3627
--- a/app/soc/cache/base.py	Wed Jan 28 11:22:41 2009 +0000
+++ b/app/soc/cache/base.py	Wed Jan 28 11:23:19 2009 +0000
@@ -26,14 +26,14 @@
 
 
 def getCacher(get, put):
-  """Returns a caching decorator that uses get and put
+  """Returns a caching decorator that uses get and put.
   """
 
   # TODO(SRabbelier) possibly accept 'key' instead, and define
   # get and put in terms of key, depends on further usage
 
   def cache(func):
-    """Decorator that caches the result from func
+    """Decorator that caches the result from func.
     """
   
     @wraps(func)