Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pcostantini committed Jan 19, 2018
1 parent 0cac76a commit e11542c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Node/sample-knowledgeBot/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ module.exports = function () {
global.searchName = process.env.AZURE_SEARCH_NAME ? process.env.AZURE_SEARCH_NAME : "<YourSearchName>";
global.indexName = process.env.INDEX_NAME ? process.env.AZURE_SEARCH_NAME : "<YourIndexName>";
global.searchKey = process.env.INDEX_NAME ? process.env.AZURE_SEARCH_KEY : "<YourSearchKey>";
global. queryString = 'https://' + searchName + '.search.windows.net/indexes/' + indexName + '/docs?api-key=' + searchKey + '&api-version=2015-02-28&';

global.queryString = 'https://' + searchName + '.search.windows.net/indexes/' + indexName + '/docs?api-key=' + searchKey + '&api-version=2015-02-28&';
}

0 comments on commit e11542c

Please sign in to comment.