Skip to content

Commit c68dacc

Browse files
committed
docs: fix simple typo, browswer -> browser
There is a small typo in examples/frontend-rendering-with-webpack/README.md. Should read `browser` rather than `browswer`.
1 parent c1fb26c commit c68dacc

File tree

1 file changed

+1
-1
lines changed
  • examples/frontend-rendering-with-webpack

1 file changed

+1
-1
lines changed

examples/frontend-rendering-with-webpack/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Running the example
22
===================
33

4-
As mentioned in the ***Using React on the front-end*** section, [Webpack](https://webpack.github.io/) is used to bundle the respective js files into `dist.js` and included in `index.html`. To make React attributes like `onClick` etc. work, the app has to be re-rendered (along with all the props passed down) when it loads on the browswer. React is intelligent enough to not re-paint the browser and only update the changes, thus adding all the component properties.
4+
As mentioned in the ***Using React on the front-end*** section, [Webpack](https://webpack.github.io/) is used to bundle the respective js files into `dist.js` and included in `index.html`. To make React attributes like `onClick` etc. work, the app has to be re-rendered (along with all the props passed down) when it loads on the browser. React is intelligent enough to not re-paint the browser and only update the changes, thus adding all the component properties.
55

66
In this example, the basic_rendering example is modified to submit the Comment Form through ajax and update the Comment List by fetching the updated comments and rendering the application with new props.
77

0 commit comments

Comments
 (0)