diff --git a/README.md b/README.md index b74355a..ca1c41d 100644 --- a/README.md +++ b/README.md @@ -1306,7 +1306,7 @@ from functools import partial LogicOp = Enum('LogicOp', {'AND': partial(lambda l, r: l and r), 'OR' : partial(lambda l, r: l or r)}) ``` -* **Another solution in this particular case, is to use `'and_'` and `'or_'` functions from module [Operator](#operator) as values.** +* **Another solution in this particular case, is to use `'and_'` and `'or_'` functions from module [Operator](#operator).** Exceptions diff --git a/index.html b/index.html index f28132d..d33a7c2 100644 --- a/index.html +++ b/index.html @@ -1211,7 +1211,7 @@ LogicOp = Enum('LogicOp', {'OR' : partial(lambda l, r: l or r)})
'and_'
and 'or_'
functions from module Operator as values.'and_'
and 'or_'
functions from module Operator.