ThomasDelteil commented on a change in pull request #16381: [DOC] fix
installation selector wrong history
URL: https://github.com/apache/incubator-mxnet/pull/16381#discussion_r331799849
##########
File path: docs/static_site/src/assets/js/options.js
##########
@@ -27,13 +27,13 @@ $(document).ready(function () {
}
function urlSearchParams(searchString) {
- let urlDict = new Map();
+ let searchDict = new Map();
let searchParams = searchString.substring(1).split("&");
searchParams.forEach(function (element) {
kvPair = element.split("=");
urlDict.set(kvPair[0], kvPair[1]);
Review comment:
this should be searchDict
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services