Skip to content

Commit 6b1ba8a

Browse files
Fix newline characters in info boxes
1 parent 38f781c commit 6b1ba8a

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

opcodes/OP_GREATERTHAN.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# OP_GREATERTHAN
22

33
:::info
4-
**Opcode number:** 160
5-
**Byte representation:** `0xa0`
6-
**Short description:** Pop the top two items; push 1 if the second is greater than the top, 0 otherwise.
4+
**Opcode number:** 160
5+
**Byte representation:** `0xa0`
6+
**Short description:** Pop the top two items; push 1 if the second is greater than the top, 0 otherwise.
77
:::
88

99
`OP_GREATERTHAN` compares the top two items on the stack as integers. If the second item is greater than the top item, it pushes 1 (true) onto the stack. If not, it pushes an empty array (false). Both items are removed from the stack after the comparison.

opcodes/OP_GREATERTHANOREQUAL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# OP_GREATERTHANOREQUAL
22

33
:::info
4-
**Opcode number:** 162
5-
**Byte representation:** `0xa2`
6-
**Short description:** Pop the top two items; push 1 if the second is greater than or equal to the top, 0 otherwise.
4+
**Opcode number:** 162
5+
**Byte representation:** `0xa2`
6+
**Short description:** Pop the top two items; push 1 if the second is greater than or equal to the top, 0 otherwise.
77
:::
88

99
`OP_GREATERTHANOREQUAL` compares the top two items on the stack as integers. If the second item is greater than or equal to the top item, it pushes 1 (true) onto the stack. If not, it pushes an empty array (false). Both items are removed from the stack after the comparison.

opcodes/OP_LESSTHAN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
:::info
44
**Opcode number:** 159
55
**Byte representation:** `0x9f`
6-
**Short description:** Pop the top two items; push 1 if the second is less than the top, 0 otherwise.
6+
**Short description:** Pop the top two items; push 1 if the second is less than the top, 0 otherwise.
77
:::
88

99
`OP_LESSTHAN` compares the top two items on the stack as integers. If the second item is less than the top item, it pushes `1` (`true`) onto the stack. If not, it pushes an empty array (`false`). Both items are removed from the stack after the comparison.

opcodes/OP_LESSTHANOREQUAL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# OP_LESSTHANOREQUAL
22

33
:::info
4-
**Opcode number:** 161
5-
**Byte representation:** 0xa1
6-
**Short description:** Pop the top two items; push 1 if the second is less than or equal to the top, 0 otherwise.
4+
**Opcode number:** 161
5+
**Byte representation:** 0xa1
6+
**Short description:** Pop the top two items; push 1 if the second is less than or equal to the top, 0 otherwise.
77
:::
88

99
`OP_LESSTHANOREQUAL` compares the top two items on the stack as integers. If the second item is less than or equal to the top item, it pushes 1 (true) onto the stack. If not, it pushes an empty array (false). Both items are removed from the stack after the comparison.

opcodes/OP_PICK.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# OP_PICK
22

33
:::info
4-
**Opcode number:** 121
4+
**Opcode number:** 121
55
**Byte representation:** `0x79`
6-
**Short description:** Copy an item from the stack at a specified depth and push it to the top.
6+
**Short description:** Copy an item from the stack at a specified depth and push it to the top.
77
:::
88

99
[`OP_PICK`](./OP_PICK.md) is used to select a stack item and copy it to the top.

0 commit comments

Comments
 (0)