From 23c3ef88c98796b0b3baafc5be083ad73a980a04 Mon Sep 17 00:00:00 2001 From: Fabio Espinosa Date: Sun, 4 Mar 2018 10:09:06 -0500 Subject: [PATCH] Small grammar mistake (#3930) "Let's assume we've another page called..." correct way to say it is "we have". Just a small correction. --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 62dd8be9..5565a68c 100644 --- a/readme.md +++ b/readme.md @@ -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 }) > ```