Skip to content

Commit

Permalink
Merge #531
Browse files Browse the repository at this point in the history
531: Fix 0xCA -> 0x0A typo r=tshepang a=nneonneo

0x0A (new line) was incorrectly written as 0xCA.

Co-authored-by: Robert Xiao <[email protected]>
  • Loading branch information
bors-ferrocene[bot] and nneonneo authored Nov 15, 2024
2 parents 7af39ec + 0dd60bc commit 1f02cbd
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 1f02cbd

Please sign in to comment.