Skip to content

Commit

Permalink
Remove spurious apostrophe
Browse files Browse the repository at this point in the history
  • Loading branch information
scrabsha committed Sep 3, 2024
1 parent 92c42ad commit 9a1275f
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/expressions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1727,12 +1727,12 @@ The :t:`evaluation` of a :t:`shift left expression` proceeds as follows:
:t:`arithmetic overflow`.

#. :dp:`fls_lLoagximIxMO`
If the type of the left :t:`[operand]'` is any :t:`[signed integer type]`
and the type of the right :t:`[operand]` is any :t:`[integer type]`, then
the :t:`[shift left expression]` evaluates to the left arithmetic shift of
the value of the left :t:`[operand]` by the value of the right
:t:`[operand]`. If the right operand is negative, then the operation results
in an :t:`arithmetic overflow`.
If the type of the left :t:`[operand]` is any :t:`[signed integer type]` and
the type of the right :t:`[operand]` is any :t:`[integer type]`, then the
:t:`[shift left expression]` evaluates to the left arithmetic shift of the
value of the left :t:`[operand]` by the value of the right :t:`[operand]`. If
the right operand is negative, then the operation results in an
:t:`arithmetic overflow`.

#. :dp:`fls_8QGbl2SBU3R0`
Otherwise, ``core::ops::Shl::shl(left_operand, right_operand)`` is invoked.
Expand All @@ -1755,11 +1755,11 @@ The :t:`evaluation` of a :t:`shift right expression` proceeds as follows:
:t:`arithmetic overflow`.

#. :dp:`fls_rGv3cUKV1qpc`
If the type of the left :t:`[operand]'` is any :t:`[signed integer type]`
and the type of the right :t:`[operand]` is any :t:`[integer type]`, then
the :t:`[shift right expression]` evaluates to the right arithmetic shift of
the left :t:`[operand]` by the value of the right :t:`[operand]`. If the
right operand is negative, then the operation results in an
If the type of the left :t:`[operand]` is any :t:`[signed integer type]` and
the type of the right :t:`[operand]` is any :t:`[integer type]`, then the
:t:`[shift right expression]` evaluates to the right arithmetic shift of the
left :t:`[operand]` by the value of the right :t:`[operand]`. If the right
operand is negative, then the operation results in an
:t:`arithmetic overflow`.

#. :dp:`fls_xkyj83mcb9d5`
Expand Down

0 comments on commit 9a1275f

Please sign in to comment.