From 38bf7ffdfb7e03c525af8918bdd8f8417a471007 Mon Sep 17 00:00:00 2001 From: Roeland Van Lembergen <1547475+clayhill@users.noreply.github.com> Date: Thu, 24 Nov 2022 15:48:27 +0100 Subject: [PATCH] Fix folded keep operator in yaml-style-guide.md (#1525) Where the keep operator is mentioned, it wrongly shows the folded strip operator instead of the folded keep operator. --- docs/documenting/yaml-style-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/documenting/yaml-style-guide.md b/docs/documenting/yaml-style-guide.md index 74ee3ec7..a6cc8db1 100644 --- a/docs/documenting/yaml-style-guide.md +++ b/docs/documenting/yaml-style-guide.md @@ -202,7 +202,7 @@ In the examples above the no chomping operators are used (`|`, `>`). This is preferred, unless the example requires a different handling of the ending new line. In those cases the use of the strip operator (`|-`, `>-`: no trailing new line, any additional new lines are removed from the end) or keep operator -(`|+`, `|-`: trailing new line, and keep all additional new lines from the end) +(`|+`, `>+`: trailing new line, and keep all additional new lines from the end) is allowed. ### Additional string guidance