From 0b99d83d60343bfe73fff8e2c947e9bcd2f95000 Mon Sep 17 00:00:00 2001 From: ache Date: Sun, 29 Jul 2018 02:24:34 +0200 Subject: [PATCH] infoString => info --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 13794e7..d665c85 100644 --- a/readme.md +++ b/readme.md @@ -167,7 +167,7 @@ line is stored as the info string, both are null if missing) interface Code <: Text { type: "code"; lang: string | null; - infoString: string | null; + info: string | null; } ``` @@ -183,7 +183,7 @@ Yields: { "type": "code", "lang": null, - "infoString": null, + "info": null, "value": "foo()" } ```