Skip to content

Commit bc85a90

Browse files
committed
Address comments
1 parent 3e4bc0f commit bc85a90

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

example/timer/timer-example.cjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ rclnodejs
2222
let node = rclnodejs.createNode('timer_example_node');
2323

2424
let timer = node.createTimer(BigInt(1000000000), () => {
25-
console.log('One second escaped!');
25+
console.log('One second elapsed!');
2626

2727
console.log('Cancel this timer.');
2828
timer.cancel();
@@ -37,7 +37,7 @@ rclnodejs
3737
'The next call will be ' + timer.timeUntilNextCall() + 'ms later.'
3838
);
3939

40-
console.log('Shuting down...');
40+
console.log('Shutting down...');
4141
rclnodejs.shutdown();
4242
});
4343

example/timer/timer-example.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ await rclnodejs.init();
2424
const node = rclnodejs.createNode('timer_example_node');
2525

2626
const timer = node.createTimer(BigInt(1000000000), () => {
27-
console.log('One second escaped!');
27+
console.log('One second elapsed!');
2828

2929
console.log('Cancel this timer.');
3030
timer.cancel();
@@ -39,7 +39,7 @@ const timer = node.createTimer(BigInt(1000000000), () => {
3939
'The next call will be ' + timer.timeUntilNextCall() + 'ms later.'
4040
);
4141

42-
console.log('Shuting down...');
42+
console.log('Shutting down...');
4343
rclnodejs.shutdown();
4444
});
4545

0 commit comments

Comments
 (0)