From fdfe355dd2864ffe62d9fcec8626e22a3b1009b6 Mon Sep 17 00:00:00 2001 From: drphungky <59374030+drphungky@users.noreply.github.com> Date: Mon, 31 Aug 2020 11:28:51 -0400 Subject: [PATCH] YAML input select example missing spaces (#14356) There are spaces missing in front of the potential values in the options list (all other lines have double space on indent). Not sure if it matters as my config file works without them, but since it's an example for brand new users, may want to fix. --- source/_docs/configuration/yaml.markdown | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/_docs/configuration/yaml.markdown b/source/_docs/configuration/yaml.markdown index fa79cd97054..95438478e2f 100644 --- a/source/_docs/configuration/yaml.markdown +++ b/source/_docs/configuration/yaml.markdown @@ -45,10 +45,10 @@ input_select: name: Threat level # A collection is used for options options: - - 0 - - 1 - - 2 - - 3 + - 0 + - 1 + - 2 + - 3 initial: 0 ```