From 1e5201c414ce3d57a43ec42a708a24d55bf86159 Mon Sep 17 00:00:00 2001 From: yxxhero <11087727+yxxhero@users.noreply.github.com> Date: Wed, 6 Dec 2023 07:55:06 +0800 Subject: [PATCH] fix(docs): typo in templating_funcs.md (#1194) Signed-off-by: yxxhero --- docs/templating_funcs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/templating_funcs.md b/docs/templating_funcs.md index a9392c51..a0cc85fd 100644 --- a/docs/templating_funcs.md +++ b/docs/templating_funcs.md @@ -137,7 +137,7 @@ The `expandSecretRefs` function takes an object as the argument and expands ever #### `include` The 'include' function allows including and rendering nested templates. The function returns the created template or an error if any occurred. It will load functions from `_*.tpl` files in the directory where the helmfile.yaml is located. -For nested helmfile.yaml files, it will load `_*.tpl` files in the directory where each nested helmfile.yaml is located. example: [include](https://github.com/helmfile/helmfile/tree/main/test/integration/test-cases/include-template-funch/input) +For nested helmfile.yaml files, it will load `_*.tpl` files in the directory where each nested helmfile.yaml is located. example: [include](https://github.com/helmfile/helmfile/tree/main/test/integration/test-cases/include-template-func/input) ```yaml {{ include "my-template" . }} ```