Skip to content

Commit 7a74948

Browse files
authored
chore: fix a large number of spelling issues (#3824)
2 parents 19064ea + e99b60e commit 7a74948

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ ui/ # @tallyho/tally-ui package
334334

335335
Firefox requires to upload source code if minifier is used and to be able to compile identical output to the uploaded package. Our builds are environment dependent at the moment because of the minification and source map process. Long term solution will be to upgrade our build process to be able to produce identical file assets, but until then we use Docker.
336336

337-
1. Install and setup container manger, like at [nerdctl](https://github.com/containerd/nerdctl),[podman](https://podman.io/) or [docker](https://www.docker.com/)
337+
1. Install and setup container manager, like at [nerdctl](https://github.com/containerd/nerdctl),[podman](https://podman.io/) or [docker](https://www.docker.com/)
338338
2. Clone git repository
339339

340340
```sh

background/lib/asset-similarity.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export function prioritizedAssetSimilarityKeys(asset: AnyAsset): string[] {
5858

5959
/**
6060
* Score a set of assets by similarity to a search asset, returning the most
61-
* similiar asset to the search asset as long as it is above a base similiarity
61+
* similar asset to the search asset as long as it is above a base similarity
6262
* score, or null.
6363
*
6464
* @see scoreAssetSimilarity The way asset similarity is computed.

background/lib/poap.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ function poapNFTModelToNFT(original: PoapNFTModel, owner: string): NFT {
6868
/**
6969
* Returns list of POAPs for a given address. Doesn't take into account the network as
7070
* most of the POAPs are on the Gnosis chain, small % on Ethereum mainnet. This function should
71-
* return all POAPs, regardeless of the chain.
71+
* return all POAPs, regardless of the chain.
7272
*
7373
* More information: https://documentation.poap.tech/reference/getactionsscan-5
7474
*

background/lib/validate/prices.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { JSONSchemaType } from "ajv"
55
// with the fact that last_updated_at is listed in `required`. The two `as`
66
// type casts below trick the type system into allowing the schema correctly.
77
// Note that the schema will validate as required, and the casts allow it to
8-
// match the corret TypeScript types.
8+
// match the correct TypeScript types.
99
//
1010
// This all stems from Ajv also incorrectly requiring an optional property (`|
1111
// undefined`) to be nullable (`| null`). See

background/services/chain/serial-fallback-provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1026,7 +1026,7 @@ export default class SerialFallbackProvider extends JsonRpcProvider {
10261026

10271027
/**
10281028
* @param messageId The unique identifier of a given message
1029-
* @returns number of miliseconds to backoff
1029+
* @returns number of milliseconds to backoff
10301030
*/
10311031
private backoffFor(messageId: symbol): number {
10321032
this.messagesToSend[messageId].backoffCount += 1

background/services/chain/utils/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ export function transactionFromEthersTransaction(
342342
blockHeight: tx.blockNumber || null,
343343
network,
344344
asset: network.baseAsset,
345-
} as const // narrow types for compatiblity with our internal ones
345+
} as const // narrow types for compatibility with our internal ones
346346

347347
if (tx.r && tx.s && tx.v) {
348348
const signedTx: SignedTransaction = {

background/services/ledger/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ export default class LedgerService extends BaseService<Events> {
463463
blockHeight: null,
464464
asset: transactionRequest.network.baseAsset,
465465
network: transactionRequest.network,
466-
} as const // narrow types for compatiblity with our internal ones
466+
} as const // narrow types for compatibility with our internal ones
467467

468468
return signedTx
469469
} catch (err) {

0 commit comments

Comments
 (0)