From a9a2a65c6f29110e67f33860eabb92060d8aa5dd Mon Sep 17 00:00:00 2001 From: Shannon Booth Date: Sun, 5 Apr 2026 15:10:22 +0200 Subject: [PATCH] Editorial: Add missing article before "hexadecimal number" --- url.bs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/url.bs b/url.bs index 5cc98800..3cbd105c 100644 --- a/url.bs +++ b/url.bs @@ -418,7 +418,7 @@ bytes that are not ASCII bytes might be insecure and is not recommended.
  1. Let bytePoint be the two bytes after byte in input, - decoded, and then interpreted as hexadecimal number. + decoded, and then interpreted as a hexadecimal number.

  2. Append a byte whose value is bytePoint to @@ -1280,7 +1280,7 @@ actually doing that with the editors of this document first.

  3. Let value and length be 0.

  4. While length is less than 4 and c is an ASCII hex digit, set - value to value × 0x10 + c interpreted as hexadecimal number, + value to value × 0x10 + c interpreted as a hexadecimal number, and increase pointer and length by 1.