From 1ac160d9d7c02438056a245183b3e32649516216 Mon Sep 17 00:00:00 2001 From: Lily Skye Date: Fri, 1 Dec 2023 13:45:35 -0700 Subject: [PATCH] update mention of trace/info option in logger doc comment --- src/api/logger/logger.inc.d.ts | 6 +++--- yavascript.d.ts | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/api/logger/logger.inc.d.ts b/src/api/logger/logger.inc.d.ts index 2034b5f..bf2656c 100644 --- a/src/api/logger/logger.inc.d.ts +++ b/src/api/logger/logger.inc.d.ts @@ -10,7 +10,7 @@ declare const logger: { /** * This property is used as the default value for `trace` in yavascript API - * functions which receive `trace` as an option, like {@link which}, + * functions which receive `logging.trace` as an option, like {@link which}, * {@link exec}, {@link copy} and {@link glob}. * * The default value of `logger.trace` is a no-op function. @@ -19,8 +19,8 @@ declare const logger: { /** * This property is used as the default value for `info` in yavascript API - * functions which receive `info` as an option, like {@link exec}, {@link copy}, - * and {@link glob}. + * functions which receive `logging.info` as an option, like {@link exec}, + * {@link copy}, and {@link glob}. * * The default value of `logger.info` writes dimmed text to stdout. */ diff --git a/yavascript.d.ts b/yavascript.d.ts index bbeea6e..8393887 100644 --- a/yavascript.d.ts +++ b/yavascript.d.ts @@ -3015,7 +3015,7 @@ declare class GitRepo { declare const logger: { /** * This property is used as the default value for `trace` in yavascript API - * functions which receive `trace` as an option, like {@link which}, + * functions which receive `logging.trace` as an option, like {@link which}, * {@link exec}, {@link copy} and {@link glob}. * * The default value of `logger.trace` is a no-op function. @@ -3024,8 +3024,8 @@ declare const logger: { /** * This property is used as the default value for `info` in yavascript API - * functions which receive `info` as an option, like {@link exec}, {@link copy}, - * and {@link glob}. + * functions which receive `logging.info` as an option, like {@link exec}, + * {@link copy}, and {@link glob}. * * The default value of `logger.info` writes dimmed text to stdout. */