From 207c76b38b0adc022c31a59e5b4ca39503d449d0 Mon Sep 17 00:00:00 2001 From: Hexfile <68358690+Hexfile@users.noreply.github.com> Date: Wed, 13 Nov 2024 13:29:12 +0000 Subject: [PATCH 1/3] Update reference.md --- 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..c458826bde 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 From 50712f40143c4391484cf37828551d3ec3b4ab8b Mon Sep 17 00:00:00 2001 From: Hexfile <68358690+Hexfile@users.noreply.github.com> Date: Wed, 13 Nov 2024 13:29:58 +0000 Subject: [PATCH 2/3] Update reference.md --- 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 c458826bde..4006e71127 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 From de715686685fb22b44de1536a5b1394fafc3737e Mon Sep 17 00:00:00 2001 From: Hexfile <68358690+Hexfile@users.noreply.github.com> Date: Wed, 13 Nov 2024 13:30:42 +0000 Subject: [PATCH 3/3] Update reference.md Adding escaped pipe characters to Logical OR section --- 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 4006e71127..97ba8fe340 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