timers: fix outdated comment

PR-URL: https://github.com/nodejs/node/pull/14314
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
This commit is contained in:
Tim Costa 2017-07-16 17:32:39 -04:00 committed by Ruben Bridgewater
parent c14ca4925a
commit a2b68723a9
No known key found for this signature in database
GPG Key ID: F07496B3EB3C1762

View File

@ -741,7 +741,7 @@ function tryOnImmediate(immediate, oldTail) {
var threw = true;
emitBefore(immediate[async_id_symbol], immediate[trigger_id_symbol]);
try {
// make the actual call outside the try/catch to allow it to be optimized
// make the actual call outside the try/finally to allow it to be optimized
runCallback(immediate);
threw = false;
} finally {