1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

Small grammar mistake (#3930)

"Let's assume we've another page called..." correct way to say it is "we have". Just a small correction.
This commit is contained in:
Fabio Espinosa 2018-03-04 10:09:06 -05:00 committed by Tim Neutkens
parent fd7cb2a804
commit 23c3ef88c9

View file

@ -552,7 +552,7 @@ componentWillReceiveProps(nextProps) {
> NOTES:
>
> Shallow routing works **only** for same page URL changes. For an example, let's assume we've another page called `about`, and you run this:
> Shallow routing works **only** for same page URL changes. For an example, let's assume we have another page called `about`, and you run this:
> ```js
> Router.push('/about?counter=10', '/about?counter=10', { shallow: true })
> ```