Skip to content

Commit

Permalink
Fix JSDoc parameter names in account_call_builder.ts (#879)
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorShadurin committed Nov 10, 2023
1 parent f1a53d3 commit 62eab36
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/horizon/account_call_builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class AccountCallBuilder extends CallBuilder<
/**
* This endpoint filters accounts by signer account.
* @see [Accounts](https://developers.stellar.org/api/resources/accounts/list/)
* @param {string} value For example: `GDGQVOKHW4VEJRU2TETD6DBRKEO5ERCNF353LW5WBFW3JJWQ2BRQ6KDD`
* @param {string} id For example: `GDGQVOKHW4VEJRU2TETD6DBRKEO5ERCNF353LW5WBFW3JJWQ2BRQ6KDD`
* @returns {AccountCallBuilder} current AccountCallBuilder instance
*/
public forSigner(id: string): this {
Expand All @@ -49,7 +49,7 @@ export class AccountCallBuilder extends CallBuilder<
* This endpoint filters all accounts who are trustees to an asset.
* @see [Accounts](https://developers.stellar.org/api/resources/accounts/list/)
* @see Asset
* @param {Asset} value For example: `new Asset('USD','GDGQVOKHW4VEJRU2TETD6DBRKEO5ERCNF353LW5WBFW3JJWQ2BRQ6KDD')`
* @param {Asset} asset For example: `new Asset('USD','GDGQVOKHW4VEJRU2TETD6DBRKEO5ERCNF353LW5WBFW3JJWQ2BRQ6KDD')`
* @returns {AccountCallBuilder} current AccountCallBuilder instance
*/
public forAsset(asset: Asset): this {
Expand All @@ -60,7 +60,7 @@ export class AccountCallBuilder extends CallBuilder<
/**
* This endpoint filters accounts where the given account is sponsoring the account or any of its sub-entries..
* @see [Accounts](https://developers.stellar.org/api/resources/accounts/list/)
* @param {string} value For example: `GDGQVOKHW4VEJRU2TETD6DBRKEO5ERCNF353LW5WBFW3JJWQ2BRQ6KDD`
* @param {string} id For example: `GDGQVOKHW4VEJRU2TETD6DBRKEO5ERCNF353LW5WBFW3JJWQ2BRQ6KDD`
* @returns {AccountCallBuilder} current AccountCallBuilder instance
*/
public sponsor(id: string): this {
Expand All @@ -78,4 +78,4 @@ export class AccountCallBuilder extends CallBuilder<
this.url.setQuery("liquidity_pool", id);
return this;
}
}
}

0 comments on commit 62eab36

Please sign in to comment.