Skip to content

Commit 42c48db

Browse files
authored
Fix typos
1 parent 9503662 commit 42c48db

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

contributor_docs/documentation_style_guide.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Always use `let` to declare variables.
140140

141141
**Accessibility terminology**
142142

143-
The following terminiology is adapted from the WordPress documentation guidelines for [Writing inclusive documentation](https://make.wordpress.org/docs/style-guide/general-guidelines/inclusivity/#accessibility-terminology). For more background on people-first language, see the CDC's guide on [Communicating With and About People with Disabilities](https://www.cdc.gov/ncbddd/disabilityandhealth/materials/factsheets/fs-communicating-with-people.html).
143+
The following terminology is adapted from the WordPress documentation guidelines for [Writing inclusive documentation](https://make.wordpress.org/docs/style-guide/general-guidelines/inclusivity/#accessibility-terminology). For more background on people-first language, see the CDC's guide on [Communicating With and About People with Disabilities](https://www.cdc.gov/ncbddd/disabilityandhealth/materials/factsheets/fs-communicating-with-people.html).
144144

145145
| Recommended | Not Recommended |
146146
| -- | -- |
@@ -713,7 +713,7 @@ if (
713713

714714
## Iteration
715715

716-
- Don’t use a `while` or `do-while` loops unless it's necessary. Use `for` loops to iterate a fixed number of times.
716+
- Don’t use `while` or `do-while` loops unless it's necessary. Use `for` loops to iterate a fixed number of times.
717717

718718
```javascript
719719
let numPetals = 7;
@@ -896,7 +896,7 @@ for (let i = 0; i < numbers.length; i += 1) {
896896
let numbersCopy = numbers.slice();
897897
```
898898

899-
- Write arrays on multiple lines when it improves readibility. Use line breaks after the opening bracket and before the closing bracket. Add a trailing comma.
899+
- Write arrays on multiple lines when it improves readability. Use line breaks after the opening bracket and before the closing bracket. Add a trailing comma.
900900

901901
```javascript
902902
// Bad.

0 commit comments

Comments
 (0)