From f3ba6e3c1d1595f7b0de5e36b0f98df606d59cca Mon Sep 17 00:00:00 2001 From: Wes Biggs Date: Wed, 7 Aug 2024 15:54:00 -0500 Subject: [PATCH] Tweaking decimal examples that bothered me --- pages/DSNP/Serializations.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/DSNP/Serializations.md b/pages/DSNP/Serializations.md index 088e3916..b92e3d30 100644 --- a/pages/DSNP/Serializations.md +++ b/pages/DSNP/Serializations.md @@ -14,9 +14,9 @@ Strings are used to avoid issues with different implementations of numbers. | Invalid | Why | Valid | | --- | --- | --- | -| `0x123` | Must be decimal | `"291"` | -| 291 | Must be a string | `"291"` | -| `291n` | `BigInt(291)` serialization appends an `n` | `"291"` | +| `"0x123"` | Must be decimal | `"291"` | +| `291` | Must be a string | `"291"` | +| `"291n"` | `BigInt(291)` serialization appends an `n` | `"291"` | ## base32 multibase