From c8db037e35b6450c647d762bf5114ce6de267447 Mon Sep 17 00:00:00 2001 From: Bijay Dulal Date: Mon, 12 Feb 2024 03:09:48 +0545 Subject: [PATCH] Fixed Incorrect rendering of logicalOR and bitwiseOR operator (#5533) Fixes #5527 --- src/content/language/operators.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/language/operators.md b/src/content/language/operators.md index 930d75d214..60ae09fc83 100644 --- a/src/content/language/operators.md +++ b/src/content/language/operators.md @@ -28,11 +28,11 @@ You can implement many of these [operators as class members][]. | shift | `<<`    `>>`    `>>>` | Left | | bitwise AND | `&` | Left | | bitwise XOR | `^` | Left | -| bitwise OR | `| ` | Left | +| bitwise OR | | | Left | | relational and type test | `>=`    `>`    `<=`    `<`    `as`    `is`    `is!` | None | | equality | `==`    `!=`    | None | | logical AND | `&&` | Left | -| logical OR | `| |` | Left | +| logical OR | || | Left | | if null | `??` | Left | | conditional | expr1 ? expr2 : expr3 | Right | | cascade | `..`    `?..` | Left |