From 892c3c4f99e2d662506c8fcd4eae828b62ed290e Mon Sep 17 00:00:00 2001 From: justold <1188067+pwwang@users.noreply.github.com> Date: Thu, 21 Sep 2023 02:11:40 +0000 Subject: [PATCH] Correct description about hetero array tests in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4bd0b61..efcf030 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ Literally `.loads('v1 = "null" v2 = "None"')` How the package dumps a python dictionary with a heterogenous array. -Literally `.dumps({"v": [1, 1.2, True, "string", [1, 2], {"a": 1, "b": 2}]})` +Literally `.dumps({"v": [1, 1.2, True, "string"]})` | |Dumped value or error| @@ -105,7 +105,7 @@ Literally `.dumps({"v": [1, 1.2, True, "string", [1, 2], {"a": 1, "b": How the package loads a toml string with a heterogenous array. -Literally `.loads('v = [1, 1.2, True, "string", [1, 2], {"a": 1, "b": 2}]')` +Literally `.loads('v = [1, 1.2, True, "string"]')` | |Loaded as|