Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
Added a missing semicolon for consistency.
Browse files Browse the repository at this point in the history
  • Loading branch information
oleyb committed Aug 16, 2013
1 parent 3805a89 commit d7c04a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/js/controllers/articles.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function ArticlesController($scope, $routeParams, $location, Global, Articles) {

for (var i in $scope.articles) {
if ($scope.articles[i] == article) {
$scope.articles.splice(i, 1)
$scope.articles.splice(i, 1);
}
}
};
Expand Down

0 comments on commit d7c04a8

Please sign in to comment.