From 5fb977508a79f7edc72a2e1735777d2a51414ea0 Mon Sep 17 00:00:00 2001 From: CK Tan Date: Fri, 13 Nov 2020 13:14:16 -0800 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ac725a3..fff2f1d 100644 --- a/README.md +++ b/README.md @@ -151,7 +151,7 @@ For example: toml_datum_t host = toml_string_in(tab, "host"); if (host.ok) { printf("host: %s\n", host.u.s); - free(host.u.s); /* FREE applies to string type only */ + free(host.u.s); /* FREE applies to string and timestamp types only */ } ```