Skip to content

Commit

Permalink
Fix docstring for pending parameter of the users method (#436)
Browse files Browse the repository at this point in the history
  • Loading branch information
RTLcoil authored Aug 12, 2020
1 parent e381631 commit 142a452
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib-es5/provisioning/account.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ function user(user_id) {

/**
* @desc Lists users in the account.
* @param [pending] {boolean} - Whether to only return pending users. Default: false (all users)
* @param [pending] {boolean} - Limit results to pending users (true), users that are not pending (false), or all users (undefined, the default)
* @param [user_ids] {string[]} - A list of up to 100 user IDs. When provided, other parameters are ignored.
* @param [prefix] {string} - Returns users where the name or email address begins with the specified case-insensitive
* string.
Expand Down
2 changes: 1 addition & 1 deletion lib/provisioning/account.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ function user(user_id, options = {}, callback) {

/**
* @desc Lists users in the account.
* @param [pending] {boolean} - Whether to only return pending users. Default: false (all users)
* @param [pending] {boolean} - Limit results to pending users (true), users that are not pending (false), or all users (undefined, the default)
* @param [user_ids] {string[]} - A list of up to 100 user IDs. When provided, other parameters are ignored.
* @param [prefix] {string} - Returns users where the name or email address begins with the specified case-insensitive
* string.
Expand Down

0 comments on commit 142a452

Please sign in to comment.