From bbad3c574eb03b8430df8f41921624d0cbc3dcc0 Mon Sep 17 00:00:00 2001 From: Edward Medvedev Date: Sun, 15 Oct 2017 20:29:13 +0200 Subject: [PATCH] Fix a small typo in `yaml_techniques.md` Fix a typo: `coffess`. --- docs/chart_template_guide/yaml_techniques.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/chart_template_guide/yaml_techniques.md b/docs/chart_template_guide/yaml_techniques.md index ccada54c0..44c41f903 100644 --- a/docs/chart_template_guide/yaml_techniques.md +++ b/docs/chart_template_guide/yaml_techniques.md @@ -319,7 +319,7 @@ refer to that value by reference. YAML refers to this as "anchoring": ```yaml coffee: "yes, please" favorite: &favoriteCoffee "Cappucino" -coffess: +coffees: - Latte - *favoriteCoffee - Espresso @@ -339,7 +339,7 @@ YAML would be: ```YAML coffee: yes, please favorite: Cappucino -coffess: +coffees: - Latte - Cappucino - Espresso