Skip to content

Commit ca6b0cc

Browse files
committed
Update UPGRADE_GUIDE.md
make requested changes
1 parent 1aa757d commit ca6b0cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

UPGRADE_GUIDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ let history = createBrowserHistory()
5555
React.render(<Router history={history}>{routes}</Router>, el)
5656
```
5757

58-
If you do not specify a history type (as in the example above) then you will notice some unusual behaviour after updating to 1.0.0. With the default hash based routing a magic querystring entry will start appearing in your URLs called "_k". An example of how it looks is this: `?_k=umhx1s`.
58+
If you do not specify a history type (as in the example above) then you will notice some unusual behaviour after updating to 1.0.0. With the default hash based routing a querystring entry not defined by yourself will start appearing in your URLs called "_k". An example of how it looks is this: `?_k=umhx1s`.
5959

60-
This is not a bug - this is intended and part of [createHashHistory](https://github.com/rackt/react-router/blob/master/docs/guides/basics/Histories.md#createhashhistory) (which is the default history approach used if one is not specified). You can read more about the feature [here](https://github.com/rackt/react-router/blob/master/docs/guides/basics/Histories.md#what-is-that-_kckuvup-junk-in-the-url) and how to opt out [here](https://rackt.github.io/history/stable/HashHistoryCaveats.html).
60+
This is intended and part of [createHashHistory](https://github.com/rackt/react-router/blob/master/docs/guides/basics/Histories.md#createhashhistory) (which is the default history approach used if one is not specified). You can read more about the feature [here](https://github.com/rackt/react-router/blob/master/docs/guides/basics/Histories.md#what-is-that-_kckuvup-junk-in-the-url) and how to opt out [here](https://rackt.github.io/history/stable/HashHistoryCaveats.html).
6161

6262
### Route Config
6363

0 commit comments

Comments
 (0)