This commit is contained in:
David Goodger 2004-09-09 14:17:17 +00:00
parent 48e02cb74d
commit 7b7e8eece2
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ corresponding to the 'and', 'or' and 'not' boolean operators. In the
case of 'and' and 'or', the most likely reason is that these operators
have short-circuiting semantics, i.e. the second operand is not
evaluated if the result can be determined from the first operand. The
usual techique of providing special methods for these operators
usual technique of providing special methods for these operators
therefore would not work.
There is no such difficulty in the case of 'not', however, and it