1
0
mirror of https://github.com/bitcoin/bips.git synced 2025-05-12 12:03:29 +00:00

Code formatting

Co-authored-by: Vojtěch Strnad <43024885+vostrnad@users.noreply.github.com>
This commit is contained in:
Ethan Heilman 2023-12-15 15:56:12 -05:00 committed by GitHub
parent 82198302cd
commit 0b8a7e4b64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,7 +39,7 @@ For example, a script that pushed a 1-byte value on the stack and then repeated
==Specification== ==Specification==
OP_CAT pops two elements off the stack, concatenates them together in stack order and pushes the resulting element onto the stack. Given the stack [x1,x2], where x2 is at the top of the stack, OP_CAT will push x1||x2 onto the stack. By '||' we denote concatenation. OP_CAT pops two elements off the stack, concatenates them together in stack order and pushes the resulting element onto the stack. Given the stack _[x1, x2]_, where _x2_ is at the top of the stack, OP_CAT will push _x1 || x2_ onto the stack. By _||_ we denote concatenation.
===Implementation=== ===Implementation===
<pre> <pre>