diff --git a/packages/faucet/src/faucet.ts b/packages/faucet/src/faucet.ts index b087d38d..119a7050 100644 --- a/packages/faucet/src/faucet.ts +++ b/packages/faucet/src/faucet.ts @@ -61,7 +61,7 @@ export class Faucet { } /** - * Returns a list of denoms of tokens owned by the the holder and configured in the faucet + * Returns a list of denoms of tokens owned by the holder and configured in the faucet */ public async availableTokens(): Promise { const { balance } = await this.loadAccount(this.holderAddress); diff --git a/packages/stream/src/valueandupdates.ts b/packages/stream/src/valueandupdates.ts index d42317a4..9b70d7df 100644 --- a/packages/stream/src/valueandupdates.ts +++ b/packages/stream/src/valueandupdates.ts @@ -7,7 +7,7 @@ export type SearchFunction = (value: T) => boolean; /** * A read only wrapper around DefaultValueProducer that allows * to synchronously get the current value using the .value property - * and listen to to updates by suscribing to the .updates stream + * and listen to updates by suscribing to the .updates stream */ export class ValueAndUpdates { public readonly updates: MemoryStream;