Skip to content

Commit

Permalink
Fix 0xCA -> 0x0A typo
Browse files Browse the repository at this point in the history
0x0A (new line) was incorrectly written as 0xCA.
  • Loading branch information
nneonneo authored Nov 12, 2024
1 parent 7af39ec commit 0dd60bc
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 0dd60bc

Please sign in to comment.