From e2f2f4f7799f7b54d9fdb7a55bcaf570067353c5 Mon Sep 17 00:00:00 2001 From: Enmanuel de la Nuez Date: Tue, 3 Aug 2021 03:20:34 -0400 Subject: [PATCH] Briefly explain TOML tables (#1576) * Briefly explain TOML tables There's a warning about a possible source of errors, but it doesn't give you the relevant information to actually make sense of it. I hope this saves someone a search since I personally had to find this out reading the TOML spec. Any other ways to phrase this? * Update configuration.md --- docs/content/documentation/getting-started/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/documentation/getting-started/configuration.md b/docs/content/documentation/getting-started/configuration.md index 09a48333..c94f9e7c 100644 --- a/docs/content/documentation/getting-started/configuration.md +++ b/docs/content/documentation/getting-started/configuration.md @@ -9,7 +9,7 @@ It follows the philosophy of paying for only what you need, almost everything is To change the configuration, edit the `config.toml` file. If you are not familiar with TOML, have a look at [the TOML spec](https://github.com/toml-lang/toml). -⚠️ If you add keys to your `config.toml`, you must pay attention to which TOML section it belongs to. +⚠️ If you add keys to your `config.toml`, you must pay attention to which TOML section it belongs to. A TOML section starts with a header, e.g. `[search]`, and ends at the next section or EOF. Here are the current `config.toml` sections: 1. main (unnamed)