Skip to content

Corrected typo in Arduino API documentation #1768

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/learn/03.programming/00.reference/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. |


Expand All @@ -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. |