diff options
author | txtsd <thexerothermicsclerodermoid@gmail.com> | 2022-07-12 21:04:57 +0530 |
---|---|---|
committer | txtsd <thexerothermicsclerodermoid@gmail.com> | 2022-08-06 12:55:11 +0530 |
commit | fba20e2cfb2bcf10b9987f74a3d454b59b079fa6 (patch) | |
tree | 6367b31401ded7d76d4959d675b80798dc4408bb /libraries/tomlc99 | |
parent | 358f080c76dbdfc65f32e08448a5e38b78d2bab0 (diff) | |
download | PrismLauncher-fba20e2cfb2bcf10b9987f74a3d454b59b079fa6.tar.gz PrismLauncher-fba20e2cfb2bcf10b9987f74a3d454b59b079fa6.tar.bz2 PrismLauncher-fba20e2cfb2bcf10b9987f74a3d454b59b079fa6.zip |
chore(markdown): MD040 Fenced code blocks should have a language specified
Signed-off-by: txtsd <thexerothermicsclerodermoid@gmail.com>
Diffstat (limited to 'libraries/tomlc99')
-rw-r--r-- | libraries/tomlc99/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/tomlc99/README.md b/libraries/tomlc99/README.md index d2776448..103024f0 100644 --- a/libraries/tomlc99/README.md +++ b/libraries/tomlc99/README.md @@ -150,7 +150,7 @@ call was successful. If so, you may proceed to read the value corresponding to the type of the content. For example: -``` +```c toml_datum_t host = toml_string_in(tab, "host"); if (host.ok) { printf("host: %s\n", host.u.s); |