From 57edac167f55de5bbc65b0d2c9651d9e9a7f9514 Mon Sep 17 00:00:00 2001 From: nobleRadical <88314680+nobleRadical@users.noreply.github.com> Date: Wed, 1 Oct 2025 20:41:35 -0700 Subject: [PATCH] Update reference.md Added the local or operator symbol to the table, it wasn't there for some reason. --- content/learn/03.programming/00.reference/reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/learn/03.programming/00.reference/reference.md b/content/learn/03.programming/00.reference/reference.md index 3aaa6951d1..dc469ccca0 100644 --- a/content/learn/03.programming/00.reference/reference.md +++ b/content/learn/03.programming/00.reference/reference.md @@ -352,7 +352,7 @@ Compact version of the [Arduino Language Reference](https://www.arduino.cc/refer | ------------------ | ------------------------------------------------------------------ | | `! (logical not)` | Inverts the logical value, true becomes false and vice versa. | | `&& (logical and)` | Logical AND operator, returns true if both operands are true. | -| `(logical or)` | Logical OR operator, returns true if at least one operand is true. | +| `|| (logical or)` | Logical OR operator, returns true if at least one operand is true. | ### Pointer Access Operators