From a1c7298b085ab10f4164ba494becf610ece04080 Mon Sep 17 00:00:00 2001 From: lukasprobst Date: Mon, 25 Oct 2021 23:22:30 +0200 Subject: [PATCH] Small documentation adjustment --- CHANGELOG.md | 2 +- CONFIG.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fe7d9a..a90c978 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,7 +26,7 @@ ambiguous situations. - A KIT IPD crawler ### Removed -- Interpolation of ConfigParser +- [Interpolation](https://docs.python.org/3/library/configparser.html#interpolation-of-values) in config file ## 3.2.0 - 2021-08-04 diff --git a/CONFIG.md b/CONFIG.md index 06b9246..590507b 100644 --- a/CONFIG.md +++ b/CONFIG.md @@ -5,10 +5,10 @@ which is followed by a list of `key = value` pairs. Comments must be on their own line and start with `#`. Multiline values must be indented beyond their key. Boolean values can be `yes` or `no`. For more details and some examples on the format, see the [configparser documentation][1] ([basic interpolation][2] is -enabled). +disabled). [1]: "Supported INI File Structure" -[2]: "BasicInterpolation" +[2]: "BasicInterpolation" ## The `DEFAULT` section