Skip to content

Commit

Permalink
fix: changes requested by vw's review
Browse files Browse the repository at this point in the history
  • Loading branch information
shuffledex committed Jan 6, 2020
1 parent 6e48592 commit d62aa06
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/entities/SecurityToken/Controller.ts
Expand Up @@ -69,8 +69,8 @@ export class Controller extends SubModule {
* This operation is subject to transfer restrictions and the amount is limited by the token holder's balance.
* `balanceOf(tokenHolder)` tokens) and potentially also need to respect other transfer restrictions.
*
* @param args.amount - of tokens to be redeemed
* @param args.address - of the token holder
* @param args.amount - amount of tokens to be redeemed
* @param args.address - address of the token holder
* @param args.reason - optional message to describe why the redemption occurred
* @param args.data - optional data used to validate the transfer
*/
Expand Down
8 changes: 4 additions & 4 deletions src/entities/SecurityToken/Documents.ts
Expand Up @@ -9,15 +9,15 @@ import { RemoveDocument } from '../../procedures/RemoveDocument';
*/
interface Document {
/**
* name of the document. It should be unique always
* name of the document. It should always be unique
*/
name: string;
/**
* off-chain uri of the document from where it is accessible to investors/advisors to read
*/
documentUri: string;
/**
* content's hash of the document
* hash of the document's content
*/
documentHash: string;
/**
Expand All @@ -33,7 +33,7 @@ export class Documents extends SubModule {
/**
* Attach a new document to the contract, or update the URI or hash of an existing attached document
*
* @param args.name - it should be unique always
* @param args.name - should always be unique
* @param args.uri - off-chain uri of the document from where it is accessible to investors/advisors to read
*/
public async set(args: { name: string; uri: string; documentHash: string }) {
Expand All @@ -47,7 +47,7 @@ export class Documents extends SubModule {
/**
* Remove an existing document from the contract giving the name of the document
*
* @param args.name - it should be unique always
* @param args.name - should always be unique
*/
public async remove(args: { name: string }) {
const { symbol } = this.securityToken;
Expand Down

0 comments on commit d62aa06

Please sign in to comment.