diff --git a/bip-0114.mediawiki b/bip-0114.mediawiki
index 4ad593f2..f2a960ed 100644
--- a/bip-0114.mediawiki
+++ b/bip-0114.mediawiki
@@ -35,9 +35,9 @@ The Position
, Path
, and MAST Script
are p
The double-SHA256 of the MAST Script (≤ TBD bytes) must be correctly connected to the MAST Root
with the ComputeMerkleRootFromBranch
function, with the specified Path
and Position
.
-Path
is the serialized Merkle path for the MAST Script
. Size of Path
must be a multiple of 32 bytes, and not more than 1024 bytes (which allows 32 levels). If the size of Path
is zero, the double-SHA256 of the MAST Script
must match the MAST Root
.
+Path
is the serialized Merkle path for the MAST Script
. Size of Path
must be a multiple of 32 bytes, and not more than 1024 bytes (which allows 32 levels). Each 32 byte word is a double-SHA256 merkle node in the merkle branch connecting to the MAST Root
. If the size of Path
is zero, the double-SHA256 of the MAST Script
must match the MAST Root
.
-Position
indicates the location of the MAST Script
in the Merkle tree, with zero means the leftmost position. It is an unsigned little-endian integer with not more than 4 bytes. It must be encoded in the most parsimonious way possible, with no leading zero and not larger than the maximum number of items allowed by the depth of the tree (as implied by the size of Path
).
+Position
indicates the location of the MAST Script
in the Merkle tree, with zero indicating the leftmost position. It is an unsigned little-endian integer with not more than 4 bytes. It must be encoded in the most parsimonious way possible, with no leading zero and not larger than the maximum number of items allowed by the depth of the tree (as implied by the size of Path
).
The MAST Script
is then deserialized, and executed after normal script evaluation with the remaining witness stack (≤ TBD bytes for each stack item). The script must not fail, and result in exactly a single TRUE on the stack.