From 96a91e988d7e87c3185efc930cc38de4c24e5d96 Mon Sep 17 00:00:00 2001 From: txtsd Date: Wed, 13 Jul 2022 00:25:03 +0530 Subject: [PATCH] chore(markdown): MD010 Hard tabs Signed-off-by: txtsd --- libraries/tomlc99/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/tomlc99/README.md b/libraries/tomlc99/README.md index 8a144e70..7a0eecff 100644 --- a/libraries/tomlc99/README.md +++ b/libraries/tomlc99/README.md @@ -17,8 +17,8 @@ parses this config file: ```toml [server] - host = "www.example.com" - port = [ 8080, 8181, 8282 ] + host = "www.example.com" + port = [ 8080, 8181, 8282 ] ``` The steps for getting values from our file is usually : @@ -158,8 +158,8 @@ For example: ```c 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 and timestamp types only */ + printf("host: %s\n", host.u.s); + free(host.u.s); /* FREE applies to string and timestamp types only */ } ```