From 6c947c59a929fff615ba845e68c1f7ebd8afa05e Mon Sep 17 00:00:00 2001 From: looklose Date: Wed, 26 Feb 2025 20:39:23 +0800 Subject: [PATCH] chore: remove redundant words Signed-off-by: looklose --- packages/faucet/src/faucet.ts | 2 +- packages/stream/src/valueandupdates.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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;