Skip to content

Commit

Permalink
chore: fix some typos in comment
Browse files Browse the repository at this point in the history
Signed-off-by: deterclosed <[email protected]>
  • Loading branch information
deterclosed committed Dec 11, 2024
1 parent 85696a9 commit 857991e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ interface IVestingScheduler {
* @param superToken SuperToken to be vested
* @param receiver Vesting receiver
* @param startDate Timestamp when the vesting should start
* @param cliffDate Timestamp of cliff exectution - if 0, startDate acts as cliff
* @param cliffDate Timestamp of cliff execution - if 0, startDate acts as cliff
* @param flowRate The flowRate for the stream
* @param cliffAmount The amount to be transferred at the cliff
* @param endDate The timestamp when the stream should stop.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ interface IVestingSchedulerV2 {
* @param receiver Vesting receiver
* @param startDate Timestamp when the vesting should start
* @param claimValidityDate Date before which the claimable schedule must be claimed
* @param cliffDate Timestamp of cliff exectution - if 0, startDate acts as cliff
* @param cliffDate Timestamp of cliff execution - if 0, startDate acts as cliff
* @param flowRate The flowRate for the stream
* @param cliffAmount The amount to be transferred at the cliff
* @param endDate The timestamp when the stream should stop.
Expand Down Expand Up @@ -98,7 +98,7 @@ interface IVestingSchedulerV2 {
* @param superToken SuperToken to be vested
* @param receiver Vesting receiver
* @param startDate Timestamp when the vesting should start
* @param cliffDate Timestamp of cliff exectution - if 0, startDate acts as cliff
* @param cliffDate Timestamp of cliff execution - if 0, startDate acts as cliff
* @param flowRate The flowRate for the stream
* @param cliffAmount The amount to be transferred at the cliff
* @param endDate The timestamp when the stream should stop.
Expand Down
2 changes: 1 addition & 1 deletion packages/js-sdk/src/utils/gasMetering/gasMetering.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ module.exports = class GasMeter {
// TODO
break;
default:
throw new Error(`Unsuported report type ${outputFormat}`);
throw new Error(`Unsupported report type ${outputFormat}`);
}
this.gasPrice = new this.BN(gasPrice);
this.records = [];
Expand Down

0 comments on commit 857991e

Please sign in to comment.