Skip to content

Commit bca4ce1

Browse files
Merge branch 'master' of https://github.com/reactjs/reactjs.org into sync-e60bca04
2 parents 8530128 + e60bca0 commit bca4ce1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

content/blog/2017-09-08-dom-attributes-in-react-16.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ React has always provided a JavaScript-centric API to the DOM. Since React compo
3232
<div tabIndex={-1} />
3333
```
3434

35-
This has not changed. However, the way we enforced it in the past forced us to maintain a allowlist of all valid React DOM attributes in the bundle:
35+
This has not changed. However, the way we enforced it in the past forced us to maintain an allowlist of all valid React DOM attributes in the bundle:
3636

3737
```js
3838
// ...

content/docs/testing-recipes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ it("changes value when clicked", () => {
393393
render(<Toggle onChange={onChange} />, container);
394394
});
395395
396-
// get ahold of the button element, and trigger some clicks on it
396+
// get a hold of the button element, and trigger some clicks on it
397397
const button = document.querySelector("[data-testid=toggle]");
398398
expect(button.innerHTML).toBe("Turn on");
399399

0 commit comments

Comments
 (0)