From b69940f56ab0cbab5f27c6ca88fdca222d511681 Mon Sep 17 00:00:00 2001 From: rkagerer Date: Sat, 25 Feb 2023 20:00:09 -0800 Subject: [PATCH] Update bitwise_left_shift_assignment.rst Fix what appears to be a copy-paste typo in the Syntax section, which I'm guessing occurred when this content was copied from the "Bitwise Right Shift Assignment" docs --- source/docs/operators/bitwise_left_shift_assignment.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/docs/operators/bitwise_left_shift_assignment.rst b/source/docs/operators/bitwise_left_shift_assignment.rst index d408faa..5fc893d 100644 --- a/source/docs/operators/bitwise_left_shift_assignment.rst +++ b/source/docs/operators/bitwise_left_shift_assignment.rst @@ -8,7 +8,7 @@ Performs bitwise left shift and assigns value to the left operand. Syntax ====== -A >>= B +A <<= B *A* Integer object. @@ -36,4 +36,4 @@ Example See also ======== -#TODO \ No newline at end of file +#TODO