diff --git a/content/java/concepts/operators/operators.md b/content/java/concepts/operators/operators.md index a0838d3ac0e..84de7ba75b6 100644 --- a/content/java/concepts/operators/operators.md +++ b/content/java/concepts/operators/operators.md @@ -78,10 +78,9 @@ Bitwise operators are used to manipulate individual bits of a number. - `|` Bitwise OR - `^` Bitwise XOR - `~` Bitwise complement -- `<<` Signed right shift operator -- `>>` Signed left shift operator +- `<<` Left shift operator +- `>>` Signed right shift operator - `>>>` Unsigned right shift operator -- `<<<` Unsigned left shift operator They can only be operated on data of `int`, `char`, `byte`, `long`, and `short`.