From ecaaeb694a893e7a0e0e0f28f10ddffb3dacf978 Mon Sep 17 00:00:00 2001 From: Jesse Bannon Date: Tue, 15 Nov 2022 11:13:08 -0800 Subject: [PATCH] [DOCS] Preset single or list explanation (#328) --- docs/config.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/config.rst b/docs/config.rst index b89a8b1a..f9c06d8e 100644 --- a/docs/config.rst +++ b/docs/config.rst @@ -108,6 +108,9 @@ In this example, ``child_preset`` will inherit all fields from ``custom_preset`` and ``parent_preset`` in that order. The bottom-most preset has the highest priority. +If you are only inheriting from one preset, the syntax ``preset: "parent_preset"`` is +valid YAML. Inheriting from multiple presets require use of a list. + -------------------------------------------------------------------------------