# HG changeset patch # User Julien Cristau # Date 1392646941 -3600 # Node ID be9b12f42d765513c3494e1df076525370bf4bd3 # Parent 1358f8ef1b5b0307bc9083029c3a0b1bc2063e00 [predicates] fix thinko in doc strings Replace "e.g." with more appropriate "i.e.". These are not examples. diff -r 1358f8ef1b5b -r be9b12f42d76 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. """