Skip to content

Commit

Permalink
fix: add read quota unit description
Browse files Browse the repository at this point in the history
  • Loading branch information
BarryTong65 committed Jan 30, 2024
1 parent 66e7131 commit 3fc29c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cmd/cmd_bucket.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ $ gnfd-cmd bucket create --visibility=public-read gnfd://gnfd-bucket`,
&cli.Uint64Flag{
Name: chargeQuotaFlag,
Value: 0,
Usage: "indicate the read quota info of the bucket",
Usage: "indicate the read quota info of the bucket. charged quota defines the read data that users are charged for, measured in bytes.",
},
&cli.GenericFlag{
Name: visibilityFlag,
Expand Down Expand Up @@ -79,7 +79,7 @@ $ gnfd-cmd bucket update --visibility=public-read --paymentAddress xx gnfd://gn
},
&cli.Uint64Flag{
Name: chargeQuotaFlag,
Usage: "indicate the read quota info of the bucket",
Usage: "indicate the read quota info of the bucket. charged quota defines the read data that users are charged for, measured in bytes.",
},
&cli.GenericFlag{
Name: visibilityFlag,
Expand Down
2 changes: 1 addition & 1 deletion cmd/cmd_payment.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ $ gnfd-cmd payment buy-quota --chargedQuota 1000000 gnfd://bucket-name`,
Flags: []cli.Flag{
&cli.Uint64Flag{
Name: chargeQuotaFlag,
Usage: "indicate the target quota to be set for the bucket",
Usage: "indicate the target quota to be set for the bucket. charged quota defines the read data that users are charged for, measured in bytes.",
Required: true,
},
},
Expand Down

0 comments on commit 3fc29c1

Please sign in to comment.