[predicates] fix thinko in doc strings
authorJulien Cristau <julien.cristau@logilab.fr>
Mon, 17 Feb 2014 15:22:21 +0100
changeset 9553 be9b12f42d76
parent 9552 1358f8ef1b5b
child 9554 d2fd866f69a2
[predicates] fix thinko in doc strings Replace "e.g." with more appropriate "i.e.". These are not examples.
predicates.py
--- 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.
     """