Skip to content

Commit

Permalink
update mention of trace/info option in logger doc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
suchipi committed Dec 1, 2023
1 parent cba082b commit 1ac160d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/api/logger/logger.inc.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
*/
Expand Down
6 changes: 3 additions & 3 deletions yavascript.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
*/
Expand Down

0 comments on commit 1ac160d

Please sign in to comment.