Skip to content

Commit

Permalink
Merge pull request #3 from fozzle/master
Browse files Browse the repository at this point in the history
remove extra slash
  • Loading branch information
dariusk committed Mar 18, 2015
2 parents f260dfb + 8571a07 commit 43ac24e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/wordnik-bb.js
Expand Up @@ -166,7 +166,7 @@ exports.init = function(APIKEY) {
}
queryString = queryString.substr(1,queryString.length);

return "http://api.wordnik.com//v4/words.json/randomWord?" + queryString + "&api_key=" + APIKEY;
return "http://api.wordnik.com/v4/words.json/randomWord?" + queryString + "&api_key=" + APIKEY;
},
getRandomWord: function() {
return this.fetch({
Expand Down

0 comments on commit 43ac24e

Please sign in to comment.