From af86e95491a2cabe2f5300c795df90ced47ad61e Mon Sep 17 00:00:00 2001 From: Tobin Harding Date: Mon, 14 Jun 2021 03:01:50 +1000 Subject: [PATCH] Fix spelling typo and spacing On a single line fix - Spacing between 'the' and 'src' - Spelling of 'ineteger2lehex.sh' --- 10_2_Building_the_Structure_of_P2SH.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/10_2_Building_the_Structure_of_P2SH.md b/10_2_Building_the_Structure_of_P2SH.md index c66b0d9..7d74afe 100644 --- a/10_2_Building_the_Structure_of_P2SH.md +++ b/10_2_Building_the_Structure_of_P2SH.md @@ -67,7 +67,7 @@ To complete your serialization, you translate the hexcode into binary. On the co ## Run The Integer Conversion Script -A complete script for changing an integer between -2147483647 and 2147483647 to a little-endian signed-magnitude representation in hex can be found in the [src code directory](src/10_2_integer2lehex.sh). You can download it as `integeer2lehex.sh`. +A complete script for changing an integer between -2147483647 and 2147483647 to a little-endian signed-magnitude representation in hex can be found in the [src code directory](src/10_2_integer2lehex.sh). You can download it as `integer2lehex.sh`. > :warning: **WARNING:** This script has not been robustly checked. If you are going to use it to create real locking scripts you should make sure to double-check and test your results.