diff --git a/README.md b/README.md index 3044c0d66..10b706b1a 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ The documentation is divided into several sections with a different tone and pur ### Push it -1. `git add -A && git commit -m "My message"` (replacing `My message` with a commit message, such as `Fixed header logo on Android`) to stage and commit your changes +1. `git add -A && git commit -m "My message"` (replacing `My message` with a commit message, such as `Fix header logo on Android`) to stage and commit your changes 1. `git push my-fork-name the-name-of-my-branch` 1. Go to the [reactjs.org repo](https://github.com/reactjs/reactjs.org) and you should see recently pushed branches. 1. Follow GitHub's instructions. diff --git a/content/community/articles.md b/content/community/articles.md index 53586fe30..a18335975 100644 --- a/content/community/articles.md +++ b/content/community/articles.md @@ -12,5 +12,4 @@ permalink: community/articles.html - [You're missing the point of React](https://medium.com/@dan_abramov/youre-missing-the-point-of-react-a20e34a51e1a) - Dan Abramov's article about the best parts of React. - [Timeline for Learning React](https://daveceddia.com/timeline-for-learning-react/) - Dave Ceddia's recommended timeline for learning React and the React ecosystem. - [Simple React Development in 2017](https://hackernoon.com/simple-react-development-in-2017-113bd563691f) - Joshua Comeau's guide to showcase how easy it can be to start modern React development. -- [React FAQ](https://reactfaq.site/) - An external site with articles that try to answer frequently asked questions about React. - [Visual Guide to State in React](https://daveceddia.com/visual-guide-to-state-in-react/) - Dave Ceddia's visual guide to React state. diff --git a/content/docs/accessibility.md b/content/docs/accessibility.md index ab424685a..a43a258fc 100644 --- a/content/docs/accessibility.md +++ b/content/docs/accessibility.md @@ -250,7 +250,7 @@ Zazwyczaj jest to implementowane poprzez nasłuchiwanie zdarzenia `click` w obie ```javascript{12-14,26-30} class OuterClickExample extends React.Component { -constructor(props) { + constructor(props) { super(props); this.state = { isOpen: false };