Skip to content

Commit

Permalink
Merge pull request #439 from oguzutku1745/update-operators-shr
Browse files Browse the repository at this point in the history
Update shr
  • Loading branch information
d0cd authored Feb 16, 2025
2 parents 7a67710 + 7cea6a2 commit 10d0bbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion documentation/leo/04_operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -1107,7 +1107,7 @@ let b: u8 = a.shr(1u8); // 1u8

#### Description

Shifts `first` right by `second` bits, storing the result in `destination`.
Shifts `first` right by `second` bits, storing the result in `destination`. The operation halts if the shift distance exceeds the bit size of `first`.

#### Supported Types

Expand Down

0 comments on commit 10d0bbd

Please sign in to comment.