Skip to content

Commit 35ec4b6

Browse files
authored
add comment
1 parent 91d3fd7 commit 35ec4b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mini_lambda/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ def And(a, b):
439439
440440
:param a: left operand
441441
:param b: right operand
442-
:return:
442+
:return: expression evaluating the and combination
443443
"""
444444
return _LambdaExpression._get_expression_for_method_with_args(_and, a, b)
445445

@@ -454,7 +454,7 @@ def Or(a, b):
454454
455455
:param a: left operand
456456
:param b: right operand
457-
:return:
457+
:return: expression evaluating the or combination
458458
"""
459459
return _LambdaExpression._get_expression_for_method_with_args(_or, a, b)
460460

0 commit comments

Comments
 (0)