From d25686cfe955dc3c0630133dec180dca7fd2c292 Mon Sep 17 00:00:00 2001 From: AndreaBruno97 <37268733+AndreaBruno97@users.noreply.github.com> Date: Sun, 18 Feb 2024 16:48:57 +0100 Subject: [PATCH] Corrected typo in Arduino API documentation Rows regarding "bitwise or" and "compound bitwise or" operators had a pipe ("|") missing from their definition. The pipe character is escaped in order to make it visible. --- content/learn/03.programming/00.reference/reference.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/learn/03.programming/00.reference/reference.md b/content/learn/03.programming/00.reference/reference.md index 09dba7d056..3aaa6951d1 100644 --- a/content/learn/03.programming/00.reference/reference.md +++ b/content/learn/03.programming/00.reference/reference.md @@ -371,7 +371,7 @@ Compact version of the [Arduino Language Reference](https://www.arduino.cc/refer | `<< (bitshift left)` | Shifts bits to the left. | | `>> (bitshift right)` | Shifts bits to the right. | | `^ (bitwise xor)` | Performs bitwise XOR (exclusive OR) operation. | -| `(bitwise or)` | Performs bitwise OR operation. | +| `\| (bitwise or)` | Performs bitwise OR operation. | | `~ (bitwise not)` | Inverts all bits. | @@ -388,5 +388,5 @@ Compact version of the [Arduino Language Reference](https://www.arduino.cc/refer | `-= (compound subtraction)` | Subtracts the right operand from the left operand and assigns the result to the left operand. | | `/= (compound division)` | Divides the left operand by the right operand and assigns the result to the left operand. | | `^= (compound bitwise xor)` | Performs a bitwise XOR operation and assigns the result to the left operand. | -| `= (compound bitwise or)` | Performs a bitwise OR operation and assigns the result to the left operand. | +| `\|= (compound bitwise or)` | Performs a bitwise OR operation and assigns the result to the left operand. |