diff options
author | txtsd <thexerothermicsclerodermoid@gmail.com> | 2022-07-13 00:25:03 +0530 |
---|---|---|
committer | txtsd <thexerothermicsclerodermoid@gmail.com> | 2022-08-06 13:00:56 +0530 |
commit | 96a91e988d7e87c3185efc930cc38de4c24e5d96 (patch) | |
tree | ba46edd2c286711fead2bfa13ba8aad46508e834 | |
parent | 19ecb1701e42eb277bfe5b185aec051a300f66dd (diff) | |
download | PrismLauncher-96a91e988d7e87c3185efc930cc38de4c24e5d96.tar.gz PrismLauncher-96a91e988d7e87c3185efc930cc38de4c24e5d96.tar.bz2 PrismLauncher-96a91e988d7e87c3185efc930cc38de4c24e5d96.zip |
chore(markdown): MD010 Hard tabs
Signed-off-by: txtsd <thexerothermicsclerodermoid@gmail.com>
-rw-r--r-- | libraries/tomlc99/README.md | 8 |
1 files 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 */ } ``` |