diff --git a/doc/api/domain.md b/doc/api/domain.md index c7aabd489bd27c..5ce428fc882370 100644 --- a/doc/api/domain.md +++ b/doc/api/domain.md @@ -69,7 +69,7 @@ const d = require('domain').create(); d.on('error', (er) => { // The error won't crash the process, but what it does is worse! // Though we've prevented abrupt process restarting, we are leaking - // resources like crazy if this ever happens. + // a lot of resources if this ever happens. // This is no better than process.on('uncaughtException')! console.log(`error, but oh well ${er.message}`); });