From 1cb7f161a27fc4de051c2adc931e1c83013e2226 Mon Sep 17 00:00:00 2001 From: Charles Lanahan Date: Mon, 22 Apr 2024 11:20:38 -0400 Subject: [PATCH] Fixed typo in Big String Base64 9AAA code Fixed typo in code. 7AAA was repeated twice and 9 clearly conforms to the overall scheme. --- spec/spec.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/spec.md b/spec/spec.md index 5637a5b..292e188 100644 --- a/spec/spec.md +++ b/spec/spec.md @@ -1149,7 +1149,7 @@ This master table includes both the Primitive and Count Code types. The types ar | `6A` | String Base64 Only Lead Size 2 | 4 | 2 | | | `7AAA` | String Big Base64 Only Lead Size 0 | 8 | 4 | | | `8AAA` | String Big Base64 Only Lead Size 1 | 8 | 4 | | -| `7AAA` | String Big Base64 Only Lead Size 2 | 8 | 4 | | +| `9AAA` | String Big Base64 Only Lead Size 2 | 8 | 4 | | | `4B` | Bytes Lead Size 0 | 4 | 2 | | | `5B` | Bytes Lead Size 1 | 4 | 2 | | | `6B` | Bytes Lead Size 2 | 4 | 2 | |