From fcc501347d705ca1fe2c86b3fa03d7c7e7341af4 Mon Sep 17 00:00:00 2001 From: ryandawsonuk Date: Wed, 7 Nov 2018 09:48:28 +0000 Subject: [PATCH] no need to change whitespace elsewhere in doc Signed-off-by: ryandawsonuk --- docs/chart_best_practices/templates.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/chart_best_practices/templates.md b/docs/chart_best_practices/templates.md index 8eae99a8c..a3689a7dc 100644 --- a/docs/chart_best_practices/templates.md +++ b/docs/chart_best_practices/templates.md @@ -73,7 +73,7 @@ Blocks (such as control structures) may be indented to indicate flow of the temp ``` {{ if $foo -}} {{- with .Bar }}Hello{{ end -}} -{{- end -}} +{{- end -}} ``` However, since YAML is a whitespace-oriented language, it is often not possible for code indentation to follow that convention. @@ -217,7 +217,7 @@ readable than other YAML representations. For example, this YAML is closer to the normal YAML method of expressing lists: ```yaml -arguments: +arguments: - "--dirname" - "/foo" ```