Open
Description
Hi,
I noticed an issue with the RLP encoding examples in the French (fr) and Portuguese-Brazilian (pt-br) versions of the documentation.
In the example for [ [], [[]], [ [], [[]] ] ], there is an extra 0xc0 byte included in the encoded output.
The current (incorrect) RLP encoding is:
[ 0xc7, 0xc0, 0xc1, 0xc0, 0xc3, 0xc0, 0xc0, 0xc1, 0xc0 ]
It should be corrected to:
[ 0xc7, 0xc0, 0xc1, 0xc0, 0xc3, 0xc0, 0xc1, 0xc0 ]
You can see the correct examples here:
English version (line 83)
You can see the incorrect examples here:
French version (line 83)
Portuguese-Brazilian version (line 83)
Could you please update the French and PT-BR examples to fix this?
Thanks a lot for your work!