Skip to content

Commit

Permalink
Typo in bitwise_right_shift documentation (value, shift, digits)
Browse files Browse the repository at this point in the history
  • Loading branch information
Akanksha-kedia authored and tdcmeehan committed Oct 2, 2023
1 parent 1e133ec commit 666b298
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion presto-docs/src/main/sphinx/functions/bitwise.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ functions, the amount to shift is given by the bottom bits of the ``shift`` para
SELECT bitwise_left_shift(TINYINT '7', 2); -- 28
SELECT bitwise_left_shift(TINYINT '-7', 2); -- -28

.. function:: bitwise_right_shift(value, shift, digits) -> [same as value]
.. function:: bitwise_right_shift(value, shift) -> [same as value]

Returns the logical right shifted value of ``value``::

Expand Down

0 comments on commit 666b298

Please sign in to comment.