fix(docs): Fix comments content and style

Changed some bad comments referencing the Articles module in other modules.
Typo fixed in xxx.client.modules.js files ("Application" => "Applicaion")
Full stop character removed at the end of line comments
This commit is contained in:
Sébastien Combéfis
2016-01-07 22:18:36 +01:00
parent 3dee3fc47a
commit d2b2dfd606
26 changed files with 35 additions and 35 deletions

View File

@@ -5,7 +5,7 @@ angular.module('users').controller('PasswordController', ['$scope', '$stateParam
$scope.authentication = Authentication;
$scope.popoverMsg = PasswordValidator.getPopoverMsg();
//If user is signed in then redirect back home
// If user is signed in then redirect back home
if ($scope.authentication.user) {
$location.path('/');
}