Skip to content

Commit 4be59eb

Browse files
committed
Variable/flag nit
1 parent 7778cd6 commit 4be59eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

registry/lib/constants/env.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module.exports = ObjectFreeze({
1515
// Libraries like yocto-colors check for CI not by value but my existence,
1616
// e.g. `'CI' in process.env`.
1717
CI: ObjectHasOwn(env, 'CI'),
18-
// Flag set to enable debug logging based on the 'debug' package.
18+
// Variable to enable debug logging based on the 'debug' package.
1919
// https://socket.dev/npm/package/debug/overview/4.4.1
2020
DEBUG,
2121
// Variable to set the debug log level
@@ -38,7 +38,7 @@ module.exports = ObjectFreeze({
3838
// PRE_COMMIT is set to '1' by our 'test-pre-commit' script run by the
3939
// .husky/pre-commit hook.
4040
PRE_COMMIT: envAsBoolean(env.PRE_COMMIT),
41-
// Flag set to enable debug logging in Socket CLI.
41+
// Variable to enable debug logging in Socket CLI.
4242
SOCKET_CLI_DEBUG: !!DEBUG || envAsBoolean(env.SOCKET_CLI_DEBUG),
4343
// TAP=1 is set by the tap-run test runner.
4444
// https://node-tap.org/environment/#environment-variables-used-by-tap

0 commit comments

Comments
 (0)