diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 97c2cfa2a0b6f..10594a75cb4a8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -113,7 +113,7 @@ node --run build 1. **Create a branch**: `git checkout -b your-feature-branch` 2. **Commit changes**: Follow our [commit guidelines](./docs/code-style.md#commit-guidelines) 3. **Push to your fork**: `git push origin your-feature-branch` -4. **Open a Pull Request**: Use our [pull request template](.github/pull_request_template.md) +4. **Open a Pull Request**: Use our [pull request template](.github/PULL_REQUEST_TEMPLATE.md) ## Documentation Structure 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',