Introduction
Introduction Statistics Contact Development Disclaimer Help
fix typo - json2tsv - JSON to TSV converter
git clone git://git.codemadness.org/json2tsv
Log
Files
Refs
README
LICENSE
---
commit 705f468584d0c425b6871a6e1f894e4c7aad0993
parent 8ec8c8f26da6e20e58150a5b9e611ec651445469
Author: Hiltjo Posthuma <[email protected]>
Date: Mon, 15 May 2023 18:47:02 +0200
fix typo
Diffstat:
M json.c | 4 ++--
M json2tsv.1 | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/json.c b/json.c
@@ -132,7 +132,7 @@ handlechr:
while (1) {
c = GETNEXT();
chr:
- /* EOF or control char: 0x7f is not defined as…
+ /* EOF or control char: 0x7f is not defined as…
if (c < 0x20)
JSON_INVALID();
@@ -156,7 +156,7 @@ escchr:
JSON_INVALID()…
cp |= (hexdigit(c) << …
}
- /* RFC8259 - 7. Strings - surr…
+ /* RFC 8259 - 7. Strings - sur…
* 0xd800 - 0xdbff - high surr…
if (cp >= 0xd800 && cp <= 0xdb…
if ((c = GETNEXT()) !=…
diff --git a/json2tsv.1 b/json2tsv.1
@@ -151,7 +151,7 @@ output, this can change the meaning of the nodename field.
The JSON parser handles all valid JSON.
It also allows some invalid JSON extensions: it does not do a complete
validation on numbers and is not strict with handling unicode input.
-See also RFC8259 section 9. Parsers.
+See also RFC 8259 section 9. Parsers.
.It
The maximum depth of objects or arrays is hard-coded to 64 levels deep.
.El
You are viewing proxied material from codemadness.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.