chore: remove redundant words

Signed-off-by: looklose <shishuaiqun@yeah.net>
This commit is contained in:
looklose 2025-02-26 20:39:23 +08:00
parent 25d967ae55
commit 6c947c59a9
2 changed files with 2 additions and 2 deletions

View File

@ -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<string[]> {
const { balance } = await this.loadAccount(this.holderAddress);

View File

@ -7,7 +7,7 @@ export type SearchFunction<T> = (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<T> {
public readonly updates: MemoryStream<T>;