Commit 5ff331d 1 parent c4137d1 commit 5ff331d Copy full SHA for 5ff331d
File tree 5 files changed +5
-5
lines changed
5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ group: Stop and Arithmetic Operations
8
8
## Stack input
9
9
10
10
0 . ` a ` : first integer value.
11
- 1 . ` b ` : integer value to subtract to the first.
11
+ 1 . ` b ` : integer value to subtract from the first.
12
12
13
13
## Stack output
14
14
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ All values are treated as two’s complement signed 256-bit integers. Note the o
16
16
17
17
## Stack output
18
18
19
- 0 . ` a // b ` : integer result of the signed integer division. If the denominator is 0, the result will be 0.
19
+ 0 . ` a // b ` : signed integer division result . If the denominator is 0, the result will be 0.
20
20
21
21
## Examples
22
22
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ group: Stop and Arithmetic Operations
12
12
13
13
## Stack output
14
14
15
- 0 . ` a % b ` : integer result of the integer modulo. If the denominator is 0, the result will be 0.
15
+ 0 . ` a % b ` : integer result of the integer modulo. If the denominator equals 0, the result is 0.
16
16
17
17
## Examples
18
18
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ group: Stop and Arithmetic Operations
7
7
8
8
## Notes
9
9
10
- All values are treated as two’ s complement signed 256-bit integers. Note the overflow semantic when −2<sup >255</sup > is negated.
10
+ All values are treated as two' s complement 256-bit signed integers. Note the overflow semantic when −2<sup >255</sup > is negated.
11
11
12
12
## Stack input
13
13
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ group: Stop and Arithmetic Operations
7
7
8
8
## Stack input
9
9
10
- 0 . ` b ` : size in byte - 1 of the integer to sign extend .
10
+ 0 . ` b ` : size in byte - 1 of the integer to be sign-extended .
11
11
1 . ` x ` : integer value to sign extend.
12
12
13
13
## Stack output
You can’t perform that action at this time.
0 commit comments