@@ -53,7 +53,7 @@ export enum StoType {
5353}
5454
5555/**
56- * Check if the argument is of type STO Type
56+ * Check if the argument is of type [[STOType]]
5757 */
5858export function isStoType ( type : any ) : type is StoType {
5959 return typeof type === 'string' && ( type === StoType . Tiered || type === StoType . Simple ) ;
@@ -332,7 +332,7 @@ export interface CreateDividendDistributionProcedureArgs {
332332 */
333333 maturityDate : Date ;
334334 /**
335- * date the Dividend will expire
335+ * date on which the Dividend will expire
336336 */
337337 expiryDate : Date ;
338338 /**
@@ -474,7 +474,8 @@ export interface EnablePercentageTransferManagerProcedureArgs {
474474 */
475475 maxHolderPercentage : BigNumber ;
476476 /**
477- * whether to allow primary issuance or not
477+ * whether primary issuance is exempted from percentage restrictions.
478+ * If true, issuing tokens to a wallet that doesn't own tokens will bypass percentage restrictions
478479 */
479480 allowPrimaryIssuance ?: boolean ;
480481}
@@ -488,7 +489,7 @@ export interface DisableFeatureProcedureArgs {
488489 */
489490 symbol : string ;
490491 /**
491- * name of Module that will be disabled
492+ * name of the Module that will be disabled
492493 */
493494 moduleName : ModuleName ;
494495}
@@ -761,7 +762,7 @@ export interface LaunchTieredStoProcedureArgs {
761762 */
762763 minimumInvestment : BigNumber ;
763764 /**
764- * currencies in which Security Tokens can be purchased in the STO
765+ * currencies with which Security Tokens can be purchased in the STO
765766 */
766767 currencies : Currency [ ] ;
767768 /**
0 commit comments