From d9685d0b1e62b3bc0df0a686edf0f7025abbfb45 Mon Sep 17 00:00:00 2001 From: Johan Haals Date: Wed, 17 Feb 2021 08:59:57 +0100 Subject: [PATCH] Update plugins/scaffolder/src/api.ts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Fredrik Adelöw --- plugins/scaffolder/src/api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/scaffolder/src/api.ts b/plugins/scaffolder/src/api.ts index 4978f7fafa..20fca5b3f2 100644 --- a/plugins/scaffolder/src/api.ts +++ b/plugins/scaffolder/src/api.ts @@ -45,7 +45,7 @@ export interface ScaffolderApi { * Executes the scaffolding of a component, given a template and its * parameter values. * - * @param templateName Template name for the scaffolder to use. New project is going to be created out of this template. + * @param templateName Name of the Template entity for the scaffolder to use. New project is going to be created out of this template. * @param values Parameters for the template, e.g. name, description */ scaffold(templateName: string, values: Record): Promise;