We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40644e3 commit afaacb5Copy full SHA for afaacb5
2 files changed
.github/workflows/gh_pages.yml
@@ -31,6 +31,8 @@ jobs:
31
path: jsdoc
32
33
- name: Generate JS docs
34
+ # because parsing errors still result in renderable docs
35
+ continue-on-error: true
36
run: yarn docs
37
38
- name: Publish JS docs
src/operation.js
@@ -386,8 +386,8 @@ export class Operation {
386
* Note that while smart contracts allow larger amounts, this is oriented
387
* towards validating the standard Stellar operations.
388
*
389
- * @param {string} value the amount to validate
390
- * @param {[boolean]} allowZero whether or not zero is valid (default: no)
+ * @param {string} value the amount to validate
+ * @param {boolean} allowZero optionally, whether or not zero is valid (default: no)
391
392
* @returns {boolean}
393
*/
0 commit comments