Skip to content

Commit 023e645

Browse files
Update imply_gate.py
1 parent f81a5bb commit 023e645

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

boolean_algebra/imply_gate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def imply_gate(input_1: int, input_2: int) -> int:
3636
def recursive_imply_list(input_list: list[int]) -> int:
3737
"""
3838
Recursively calculates the implication of a list.
39-
Strictly The Implication is Applied Consecuteivly left to right:
39+
Strictly the implication is applied consecutively left to right:
4040
( (a -> b) -> c ) -> d ...
4141
4242
>>> recursive_imply_list([])

0 commit comments

Comments
 (0)