typo Peter McGoron (24 Aug 2026 12:54 UTC)
Re: typo Wolfgang Corcoran-Mathe (24 Aug 2026 15:12 UTC)
Re: typo Arthur A. Gleckler (24 Aug 2026 18:35 UTC)

typo Peter McGoron 24 Aug 2026 12:51 UTC

In the rationale:

 > This is true even when non-ASCII bytes are incorporated into the
bytevector: the complete 8-bit PNG file header can be written as
#u8"\x89;PNG\r\n\x1A;\n" instead of #u8(0x89 0x50 0x4E 0x47 0x0D 0x0A
0x1A 0x0A).

The bytes are written with `0x`, when it should be written with `#x`.
The correct bytevector is

     #u8(#x89 #x50 #x4E #x47 #x0D #x0A #x1A #x0A)

-- Peter McGoron