From 78dc0cfdf3aab90af359c8639a77e0165a916f2b Mon Sep 17 00:00:00 2001 From: txtsd Date: Wed, 13 Jul 2022 00:46:24 +0530 Subject: [PATCH] chore(markdown): MD001 Heading levels should only increment by one level at a time Signed-off-by: txtsd --- libraries/tomlc99/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/tomlc99/README.md b/libraries/tomlc99/README.md index 1ac4d8c94..e5fe9480e 100644 --- a/libraries/tomlc99/README.md +++ b/libraries/tomlc99/README.md @@ -95,7 +95,7 @@ int main() } ``` -#### Accessing Table Content +### Accessing Table Content TOML tables are dictionaries where lookups are done using string keys. In general, all access functions on tables are named `toml_*_in(...)`. @@ -124,7 +124,7 @@ for (int i = 0; ; i++) { } ``` -#### Accessing Array Content +### Accessing Array Content TOML arrays can be deref-ed using integer indices. In general, all access methods on arrays are named `toml_*_at()`. @@ -146,7 +146,7 @@ toml_table_at(arr, idx); toml_array_at(arr, idx); ``` -#### toml_datum_t +### toml_datum_t Some `toml_*_at` and `toml_*_in` functions return a toml_datum_t structure. The `ok` flag in the structure indicates if the function