File tree Expand file tree Collapse file tree
src/entities/SecurityToken Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -69,8 +69,8 @@ export class Controller extends SubModule {
6969 * This operation is subject to transfer restrictions and the amount is limited by the token holder's balance.
7070 * `balanceOf(tokenHolder)` tokens) and potentially also need to respect other transfer restrictions.
7171 *
72- * @param args.amount - of tokens to be redeemed
73- * @param args.address - of the token holder
72+ * @param args.amount - amount of tokens to be redeemed
73+ * @param args.address - address of the token holder
7474 * @param args.reason - optional message to describe why the redemption occurred
7575 * @param args.data - optional data used to validate the transfer
7676 */
Original file line number Diff line number Diff line change @@ -9,15 +9,15 @@ import { RemoveDocument } from '../../procedures/RemoveDocument';
99 */
1010interface Document {
1111 /**
12- * name of the document. It should be unique always
12+ * name of the document. It should always be unique
1313 */
1414 name : string ;
1515 /**
1616 * off-chain uri of the document from where it is accessible to investors/advisors to read
1717 */
1818 documentUri : string ;
1919 /**
20- * content's hash of the document
20+ * hash of the document's content
2121 */
2222 documentHash : string ;
2323 /**
@@ -33,7 +33,7 @@ export class Documents extends SubModule {
3333 /**
3434 * Attach a new document to the contract, or update the URI or hash of an existing attached document
3535 *
36- * @param args.name - it should be unique always
36+ * @param args.name - should always be unique
3737 * @param args.uri - off-chain uri of the document from where it is accessible to investors/advisors to read
3838 */
3939 public async set ( args : { name : string ; uri : string ; documentHash : string } ) {
@@ -47,7 +47,7 @@ export class Documents extends SubModule {
4747 /**
4848 * Remove an existing document from the contract giving the name of the document
4949 *
50- * @param args.name - it should be unique always
50+ * @param args.name - should always be unique
5151 */
5252 public async remove ( args : { name : string } ) {
5353 const { symbol } = this . securityToken ;
You can’t perform that action at this time.
0 commit comments