Skip to content
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

Fix 0xCA -> 0x0A typo #531

Merged
merged 1 commit into from
Nov 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/lexical-elements.rst
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ A :t:`byte string literal` is a :t:`literal` that consists of multiple
:s:`[AsciiCharacter]s`.

:dp:`fls_Xd6LnfzMb7t7`
The character sequence 0x0D 0xCA (carriage return, new line) is replaced by 0xCA
The character sequence 0x0D 0x0A (carriage return, new line) is replaced by 0x0A
(new line) inside of a :t:`byte string literal`.

.. _fls_msbaxfC09VkK:
Expand Down Expand Up @@ -723,7 +723,7 @@ A :t:`c string literal` is a :t:`literal` that consists of multiple characters
with an implicit 0x00 byte appended to it.

:dp:`fls_XJprzaEn82Xs`
The character sequence 0x0D 0xCA (carriage return, new line) is replaced by 0xCA
The character sequence 0x0D 0x0A (carriage return, new line) is replaced by 0x0A
(new line) inside of a :t:`c string literal`.

.. _fls_p090c5oTnElW:
Expand Down Expand Up @@ -1158,7 +1158,7 @@ String Literals
A :t:`string literal` is a :t:`literal` that consists of multiple characters.

:dp:`fls_NyiCpU2tzJlQ`
The character sequence 0x0D 0xCA (carriage return, new line) is replaced by 0xCA
The character sequence 0x0D 0x0A (carriage return, new line) is replaced by 0x0A
(new line) inside of a :t:`string literal`.

.. _fls_hucd52suu6it:
Expand Down
Loading