From 337cbf8ef0881f90c3f6a0cecba1cdf553a647e2 Mon Sep 17 00:00:00 2001 From: TTAAAN <122733793+TTAAAN@users.noreply.github.com> Date: Sun, 3 May 2026 14:29:03 +0700 Subject: [PATCH] docs: correct truth table description for OR gate in documentation --- boolean_algebra/or_gate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boolean_algebra/or_gate.py b/boolean_algebra/or_gate.py index 0fd4e5a5dc18..afdabf031a86 100644 --- a/boolean_algebra/or_gate.py +++ b/boolean_algebra/or_gate.py @@ -1,7 +1,7 @@ """ An OR Gate is a logic gate in boolean algebra which results to 0 (False) if both the inputs are 0, and 1 (True) otherwise. -Following is the truth table of an AND Gate: +Following is the truth table of an OR Gate: ------------------------------ | Input 1 | Input 2 | Output | ------------------------------