From f5a9bbfd78b516dbbb97f3e80962d3b53554afd1 Mon Sep 17 00:00:00 2001 From: Terry Howe Date: Thu, 14 Nov 2024 12:51:08 -0700 Subject: [PATCH] fix: kindIs function documentation Signed-off-by: Terry Howe --- content/en/docs/chart_template_guide/function_list.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/docs/chart_template_guide/function_list.md b/content/en/docs/chart_template_guide/function_list.md index 2628cd35d..736480c0d 100644 --- a/content/en/docs/chart_template_guide/function_list.md +++ b/content/en/docs/chart_template_guide/function_list.md @@ -2016,10 +2016,10 @@ The above would return `string`. For simple tests (like in `if` blocks), the `kindIs` function will let you verify that a value is a particular kind: ``` -kindIs "int" 123 +kindIs "float64" 123 ``` -The above will return `true`. +The above will return `true` because numbers are stored as `float64` by the parser. ### Type Functions