diff --git a/apps/site/pages/en/learn/asynchronous-work/asynchronous-flow-control.md b/apps/site/pages/en/learn/asynchronous-work/asynchronous-flow-control.md index 6525d1ceab05f..50e3ee8f1ed7c 100644 --- a/apps/site/pages/en/learn/asynchronous-work/asynchronous-flow-control.md +++ b/apps/site/pages/en/learn/asynchronous-work/asynchronous-flow-control.md @@ -182,7 +182,7 @@ function final() { } function dispatch(recipient, callback) { - // `sendEmail` is a hypothetical SMTP client + // `sendMail` is a hypothetical SMTP client sendMail( { subject: 'Dinner tonight', @@ -227,7 +227,7 @@ const recipients = [ ]; function dispatch(recipient, callback) { - // `sendEmail` is a hypothetical SMTP client + // `sendMail` is a hypothetical SMTP client sendMail( { subject: 'Dinner tonight',