Merge pull request #1632 from looklose/main

chore: remove redundant words
This commit is contained in:
Simon Warta 2025-06-12 14:30:23 +02:00 committed by GitHub
commit dd295eca87
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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>;