Skip to content

Commit bb91037

Browse files
committed
src: add missing punctuation to warning
1 parent 916af4e commit bb91037

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/node_process_events.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Maybe<bool> ProcessEmitExperimentalWarning(Environment* env,
9393
experimental_warnings.insert(warning);
9494
std::string message(warning);
9595
message.append(
96-
" is an experimental feature. This feature could change at any time");
96+
" is an experimental feature. This feature could change at any time.");
9797
return ProcessEmitWarningGeneric(env, message.c_str(), "ExperimentalWarning");
9898
}
9999

test/common/measure-memory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function assertSingleDetailedShape(result) {
4545
function expectExperimentalWarning() {
4646
common.expectWarning('ExperimentalWarning',
4747
'vm.measureMemory is an experimental feature. ' +
48-
'This feature could change at any time');
48+
'This feature could change at any time.');
4949
}
5050

5151
module.exports = {

test/parallel/test-vfs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ throws(() => require(vfsFile), { code: 'MODULE_NOT_FOUND' });
3434

3535
common.expectWarning(
3636
'ExperimentalWarning',
37-
'Module._stat is an experimental feature. This feature could change at any time');
37+
'Module._stat is an experimental feature. This feature could change at any time.');
3838

3939
process.on('warning', common.mustCall());
4040

0 commit comments

Comments
 (0)