Skip to content
Closed

Patch 2 #7936

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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',
Expand Down