predicates.py
changeset 9553 be9b12f42d76
parent 9547 43aace16a953
child 9892 928732ec00dd
child 9984 793377697c81
--- a/predicates.py	Mon Feb 17 14:10:53 2014 +0100
+++ b/predicates.py	Mon Feb 17 15:22:21 2014 +0100
@@ -1290,7 +1290,7 @@
 
 @objectify_predicate
 def authenticated_user(cls, req, **kwargs):
-    """Return 1 if the user is authenticated (e.g. not the anonymous user).
+    """Return 1 if the user is authenticated (i.e. not the anonymous user).
 
     May only be used on the web side, not on the data repository side.
     """
@@ -1301,7 +1301,7 @@
 
 # XXX == ~ authenticated_user()
 def anonymous_user():
-    """Return 1 if the user is not authenticated (e.g. is the anonymous user).
+    """Return 1 if the user is not authenticated (i.e. is the anonymous user).
 
     May only be used on the web side, not on the data repository side.
     """