Skip to content

Commit 876a05d

Browse files
committed
fix: redundent comma
1 parent 5a77bde commit 876a05d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/timers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ class Timeout {
175175
'TimeoutOverflowWarning');
176176
} else if (after < 0) {
177177
process.emitWarning(`${after} is a negative number` +
178-
'\nTimeout duration was set to 1.',);
178+
'\nTimeout duration was set to 1.');
179179
}
180180
after = 1; // Schedule on next tick, follows browser behavior
181181
}

0 commit comments

Comments
 (0)