From fd5a2b9785a4ad2b8499d1a3c5c821e5d80555a9 Mon Sep 17 00:00:00 2001 From: Pieter Noordhuis Date: Mon, 18 Nov 2024 22:29:25 +0100 Subject: [PATCH] Update comment --- libs/template/materialize.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/template/materialize.go b/libs/template/materialize.go index 15b1b3c3cf..0163eb7d22 100644 --- a/libs/template/materialize.go +++ b/libs/template/materialize.go @@ -19,7 +19,7 @@ const schemaFileName = "databricks_template_schema.json" // // ctx: context containing a cmdio object. This is used to prompt the user // configFilePath: file path containing user defined config values -// templateRoot: root of the template definition +// templateFS: root of the template definition // outputDir: root of directory where to initialize the template func Materialize(ctx context.Context, configFilePath string, templateFS fs.FS, outputDir string) error { if _, err := fs.Stat(templateFS, schemaFileName); errors.Is(err, fs.ErrNotExist) {