Skip to content

Commit 3fd0c5c

Browse files
committed
ch19: fixed JSHint errors.
1 parent bc9b3f3 commit 3fd0c5c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ch19/meadowlark.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ var getWeatherData = (function(){
377377
var deferred = Q.defer();
378378
var url = 'http://api.wunderground.com/api/' +
379379
credentials.WeatherUnderground.ApiKey +
380-
'/conditions/q/OR/' + loc.name + '.json'
380+
'/conditions/q/OR/' + loc.name + '.json';
381381
http.get(url, function(res){
382382
var body = '';
383383
res.on('data', function(chunk){
@@ -400,7 +400,7 @@ var getWeatherData = (function(){
400400
});
401401
}
402402
return { locations: c.locations };
403-
}
403+
};
404404
})();
405405
// initialize weather cache
406406
getWeatherData();

0 commit comments

Comments
 (0)