Skip to content

Commit dd295ec

Browse files
authored
Merge pull request #1632 from looklose/main
chore: remove redundant words
2 parents 2c74c0c + 6c947c5 commit dd295ec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/faucet/src/faucet.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export class Faucet {
6161
}
6262

6363
/**
64-
* Returns a list of denoms of tokens owned by the the holder and configured in the faucet
64+
* Returns a list of denoms of tokens owned by the holder and configured in the faucet
6565
*/
6666
public async availableTokens(): Promise<string[]> {
6767
const { balance } = await this.loadAccount(this.holderAddress);

packages/stream/src/valueandupdates.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export type SearchFunction<T> = (value: T) => boolean;
77
/**
88
* A read only wrapper around DefaultValueProducer that allows
99
* to synchronously get the current value using the .value property
10-
* and listen to to updates by suscribing to the .updates stream
10+
* and listen to updates by suscribing to the .updates stream
1111
*/
1212
export class ValueAndUpdates<T> {
1313
public readonly updates: MemoryStream<T>;

0 commit comments

Comments
 (0)