chore: fix typoes and broken links in README

This commit is contained in:
ToruNiina
2019-03-20 12:06:55 +09:00
parent 2e9f937c43
commit 9eea46ec01

View File

@@ -22,14 +22,14 @@ You can see the error messages about invalid files and serialization results of
## Table of Contents ## Table of Contents
- [Integration](#integration) - [Integration](#integration)
- [Decoding toml file](#decoding-toml-file) - [Decoding a toml file](#decoding-a-toml-file)
- [In the case of syntax error](#in-the-case-of-syntax-error) - [In the case of syntax error](#in-the-case-of-syntax-error)
- [Getting a toml value](#getting-a-toml-value) - [Getting a toml value](#getting-a-toml-value)
- [In the case of type error](#in-the-case-of-type-error) - [In the case of type error](#in-the-case-of-type-error)
- [Getting an array](#getting-an-array) - [Getting an array](#getting-an-array)
- [Getting a table](#getting-a-table) - [Getting a table](#getting-a-table)
- [Dotted keys](#dotted-keys) - [Dotted keys](#dotted-keys)
- [Getting an array of tables](#passing-invalid-type-to-tomlget) - [Getting an array of tables](#getting-an-array-of-tables)
- [Cost of conversion](#cost-of-conversion) - [Cost of conversion](#cost-of-conversion)
- [Getting datetime and its variants](#getting-datetime-and-its-variants) - [Getting datetime and its variants](#getting-datetime-and-its-variants)
- [Getting with a fallback](#getting-with-a-fallback) - [Getting with a fallback](#getting-with-a-fallback)
@@ -62,7 +62,7 @@ int main()
} }
``` ```
## Decoding toml file ## Decoding a toml file
To parse a toml file, the only thing you have to do is To parse a toml file, the only thing you have to do is
to pass a filename to the `toml::parse` function. to pass a filename to the `toml::parse` function.
@@ -522,7 +522,7 @@ toml::value v = /* ... */;
if(v.is(toml::value_t::Boolean)) // ... if(v.is(toml::value_t::Boolean)) // ...
``` ```
## visiting toml::value ## Visiting a toml::value
toml11 provides `toml::visit` to apply a function to `toml::value` in the toml11 provides `toml::visit` to apply a function to `toml::value` in the
same way as `std::variant`. same way as `std::variant`.