From 6887a430d4b1fd36df4a43834552e51be8f7b6cc Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Fri, 29 Nov 2024 15:52:20 +0100 Subject: [PATCH] small typos --- 00.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/00.md b/00.md index a59e5b0..34f1dae 100644 --- a/00.md +++ b/00.md @@ -308,14 +308,15 @@ cashuBo2F0gqJhaUgA_9SLj17PgGFwgaNhYQFhc3hAYWNjMTI0MzVlN2I4NDg0YzNjZjE4NTAxNDkyMT #### Binary Token -V3 and V4 Token can be transmitted in a binary format when applicable. For this the serialised token is prepended with a prefix and a version byte. +V3 and V4 Token can be transmitted in a binary format when applicable (for example when transmitting via NFC). +For this the serialised token is prepended with a prefix and a version byte. ``` -utf8('craw') utf8() +utf8("craw") utf8() ``` -- Token V3 Version: `utf8('craw') utf8("A") cbor(token_object)` -- Token V4 Version: `utf8('craw') utf8("B") cbor(token_object)` +- Token V3 Version: `utf8("craw") utf8("A") cbor(token_object)` +- Token V4 Version: `utf8("craw") utf8("B") cbor(token_object)` [00]: 00.md [01]: 01.md