From 078c365677ab617279b6f8f0cd5cb25aebf979b5 Mon Sep 17 00:00:00 2001 From: Matt Butcher Date: Fri, 17 Feb 2017 10:55:57 -0700 Subject: [PATCH] docs(named_templates): fixed broken template --- docs/chart_template_guide/named_templates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/chart_template_guide/named_templates.md b/docs/chart_template_guide/named_templates.md index af36b14c0..daea98b19 100644 --- a/docs/chart_template_guide/named_templates.md +++ b/docs/chart_template_guide/named_templates.md @@ -258,7 +258,7 @@ Say we've defined a simple template that looks like this: ``` {{- define "mychart_app" -}} app_name: {{ .Chart.Name }} -app_version: "{{ .Chart.Version} }+{{ .Release.Time.Seconds }}" +app_version: "{{ .Chart.Version }}+{{ .Release.Time.Seconds }}" {{- end -}} ```