diff options
author | txtsd <thexerothermicsclerodermoid@gmail.com> | 2022-07-13 00:46:24 +0530 |
---|---|---|
committer | txtsd <thexerothermicsclerodermoid@gmail.com> | 2022-08-06 13:00:57 +0530 |
commit | 78dc0cfdf3aab90af359c8639a77e0165a916f2b (patch) | |
tree | 40ef680b6346cc22e84c12120feb69ff19d879e9 /libraries/tomlc99 | |
parent | 9654728bfbebeb4b77c6bde26d1c45a6b9d7aac4 (diff) | |
download | PrismLauncher-78dc0cfdf3aab90af359c8639a77e0165a916f2b.tar.gz PrismLauncher-78dc0cfdf3aab90af359c8639a77e0165a916f2b.tar.bz2 PrismLauncher-78dc0cfdf3aab90af359c8639a77e0165a916f2b.zip |
chore(markdown): MD001 Heading levels should only increment by one level at a time
Signed-off-by: txtsd <thexerothermicsclerodermoid@gmail.com>
Diffstat (limited to 'libraries/tomlc99')
-rw-r--r-- | libraries/tomlc99/README.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libraries/tomlc99/README.md b/libraries/tomlc99/README.md index 1ac4d8c9..e5fe9480 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 |