From 0d31048071fcd8b182a36ddc430a4aac8e63adf4 Mon Sep 17 00:00:00 2001 From: Thiago-Alessandro <116910708+Thiago-Alessandro@users.noreply.github.com> Date: Tue, 19 Nov 2024 12:54:32 -0300 Subject: [PATCH] Update how-to-modularize.md Fixes description commentary. --- site/content/ytt/docs/develop/how-to-modularize.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/content/ytt/docs/develop/how-to-modularize.md b/site/content/ytt/docs/develop/how-to-modularize.md index 6cc883b4b..bb9c8f529 100644 --- a/site/content/ytt/docs/develop/how-to-modularize.md +++ b/site/content/ytt/docs/develop/how-to-modularize.md @@ -207,8 +207,8 @@ Building on the previous solution, `name`, `namespace`, `version`, and `replicas #! schema.yml #@data/values-schema --- -name: "frontend" #! ensures that any value for 'frontend' must be a string -namespace: "default" #! ensures that any value for 'default' must be a string +name: "frontend" #! ensures that any value for 'name' must be a string +namespace: "default" #! ensures that any value for 'namespace' must be a string version: "0.1.0" #! ensures that any value for 'version' must be a string replicas: 1 #! ensures that any value for 'replicas' must be a int ```