Skip to content

Extra 0xc0 byte in RLP example in French and PT-BR versions #15278

Closed
@antoinelanco

Description

@antoinelanco

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!

Metadata

Metadata

Assignees

Labels

content 🖋️This involves copy additions or editstranslation 🌍This is related to our Translation Program

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions