From 8782f162d37fcd4d72a948f1ffe17f2139c16043 Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Tue, 18 May 2021 13:21:20 +0200 Subject: [PATCH] Improve text "single unit of gas" --- packages/launchpad/src/fee.ts | 2 +- packages/stargate/src/fee.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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.