diff --git a/packages/launchpad/src/fee.ts b/packages/launchpad/src/fee.ts index 4c638d19..5f608af9 100644 --- a/packages/launchpad/src/fee.ts +++ b/packages/launchpad/src/fee.ts @@ -19,7 +19,7 @@ function checkDenom(denom: string): void { } /** - * A gas price, i.e. the price of a single gas. This is typically a fraction of + * A gas price, i.e. the price of a single unit of gas. This is typically a fraction of * the smallest fee token unit, such as 0.012utoken. */ export class GasPrice { diff --git a/packages/stargate/src/fee.ts b/packages/stargate/src/fee.ts index d00ae2f2..b8ecc6ea 100644 --- a/packages/stargate/src/fee.ts +++ b/packages/stargate/src/fee.ts @@ -20,7 +20,7 @@ function checkDenom(denom: string): void { } /** - * A gas price, i.e. the price of a single gas. This is typically a fraction of + * A gas price, i.e. the price of a single unit of gas. This is typically a fraction of * the smallest fee token unit, such as 0.012utoken. * * This is the same as GasPrice from @cosmjs/launchpad but those might diverge in the future.