From 7e693abed1f69db95b2dbdf846a30d78b0502d9a Mon Sep 17 00:00:00 2001 From: Fox McCloud Date: Sun, 24 Jan 2021 14:38:24 -0500 Subject: [PATCH] Tweaks Styling Guide for Bitwise Operators (#15344) --- .github/CONTRIBUTING.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index e2d924314cd..b96dee5c47b 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -354,12 +354,11 @@ This prevents nesting levels from getting deeper then they need to be. #### Spacing * Operators that should be separated by spaces * Boolean and logic operators like &&, || <, >, ==, etc (but not !) - * Bitwise AND & + * Bitwise AND & and OR | * Argument separator operators like , (and ; when used in a forloop) * Assignment operators like = or += or the like * Math operators like +, -, /, or \* * Operators that should not be separated by spaces - * Bitwise OR | * Access operators like . and : * Parentheses () * logical not !