Skip to content
This repository was archived by the owner on Apr 3, 2024. It is now read-only.

Commit 7c7deda

Browse files
committed
fix: minor string fixes
1 parent bf91093 commit 7c7deda

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/agent/debuglet.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const ALLOW_EXPRESSIONS_MESSAGE = 'Expressions and conditions are not allowed' +
4848
' See the debug agent documentation at https://goo.gl/ShSm6r.';
4949
const NODE_VERSION_MESSAGE =
5050
'Node.js version not supported. Node.js 5.2.0 and ' +
51-
' versions older than 0.12 are not supported.';
51+
'versions older than 0.12 are not supported.';
5252
const NODE_10_CIRC_REF_MESSAGE =
5353
'capture.maxDataSize=0 is not recommended on Node 10+. See ' +
5454
'https://github.com/googleapis/cloud-debug-nodejs/issues/516' +
@@ -323,7 +323,7 @@ export class Debuglet extends EventEmitter {
323323
path.join(workingDir, '..') === workingDir) {
324324
const message = 'The working directory is a root directory. Disabling ' +
325325
'to avoid a scan of the entire filesystem for JavaScript files. ' +
326-
'Use config \allowRootAsWorkingDirectory` if you really want to ' +
326+
'Use config `allowRootAsWorkingDirectory` if you really want to ' +
327327
'do this.';
328328
that.logger.error(message);
329329
that.emit('initError', new Error(message));

0 commit comments

Comments
 (0)