GUAC-586: Fix typos surrounding getAllUsers() in userService.

This commit is contained in:
Michael Jumper
2015-08-31 12:32:36 -07:00
parent 09fd512571
commit 8f39671c6b

View File

@@ -80,10 +80,9 @@ angular.module('rest').factory('userService', ['$injector',
/** /**
* Returns a promise which resolves with all users accessible by the * Returns a promise which resolves with all users accessible by the
* given user, as a map of @link{User} arrays by the identifier of their * current user, as a map of @link{User} arrays by the identifier of their
* corresponding data source. All given data sources are queried. If an * corresponding data source. All given data sources are queried. If an
* error occurs while retrieving any PermissionSet, the promise will be * error occurs while retrieving any user, the promise will be rejected.
* rejected.
* *
* @param {String[]} dataSources * @param {String[]} dataSources
* The unique identifier of the data sources containing the user to be * The unique identifier of the data sources containing the user to be
@@ -128,7 +127,7 @@ angular.module('rest').factory('userService', ['$injector',
}, },
// At least one request failed // At least one request failed
function UserRetrievalFailed(e) { function userRetrievalFailed(e) {
deferred.reject(e); deferred.reject(e);
} }