-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RLP wiki page #232
RLP wiki page #232
Conversation
RLP wiki page
Hi @thogiti, Following typos were found in the pull request:
ℹ️ Here's how to fix them:
|
typos for wordlist is fixed
typos for wordlist is fixed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for another piece of content @thogiti! I think we can merge it fast, just minor comments
Co-authored-by: Mário Havel <[email protected]>
Co-authored-by: Mário Havel <[email protected]>
Updated after the review
@taxmeifyoucan Updated for the changes. Thx. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
- **Condition**: If the input is a single byte string. | ||
- **Encoding**: The byte is encoded directly, unchanged. | ||
- **Example**: Encoding the byte `0x74` directly yields `0x74`. | ||
- |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- | |
Extra bullet.
- **Example**: Encoding the byte `0x2a` directly yields `0x2a`. | ||
|
||
**Single Byte String Encoding** | ||
- **Condition**: If the input is a single byte string. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The case above covers this single byte encoding correctly. I think this section can be removed.
- Condition: If the input is a single byte string.
- Encoding: The byte is encoded directly, unchanged.
This is incorrect. For the single byte 0x80
the encoding will not be the same. Rather 0x8180
. The section above bounds the input byte correctly.
Wiki PR Checklist