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

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
PierrickP committed Jun 18, 2016
1 parent 4b4e41b commit 11437d2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/card.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ class Card {
/**
* Get / set card limit
*
* @property {Object} [limit]
* @property {String} limit.limit Limit type
* @property {Number} [limit.amount] Amount
* @property {String[]} [limit.countryList] Array of country code
* @param {Object} [limit]
* @param {String} limit.limit Limit type
* @param {Number} [limit.amount] Amount
* @param {String[]} [limit.countryList] Array of country code
*
* @return {Promise<cardLimit[]>}
*/
Expand All @@ -58,7 +58,7 @@ class Card {
/**
* Block card
*
* @return {Promise<>}
* @return {Promise}
*/
block() {
return utils.callApi(this.account, 'blockCard', this.id)
Expand All @@ -68,7 +68,7 @@ class Card {
/**
* Unblock card
*
* @return {Promise<>}
* @return {Promise}
*/
unblock() {
return utils.callApi(this.account, 'unblockCard', this.id)
Expand Down

0 comments on commit 11437d2

Please sign in to comment.