diff --git a/packages/3id-did-resolver/generateVectorDocuments.js b/packages/3id-did-resolver/generateVectorDocuments.js index c95beb6c58..c8aae696c4 100644 --- a/packages/3id-did-resolver/generateVectorDocuments.js +++ b/packages/3id-did-resolver/generateVectorDocuments.js @@ -2,7 +2,7 @@ * This is the script that was used to generate the test vectors currently * used by the 3id-did-resolver tests. This is just a simple javascript * file here in case the tests vectors need to be recreated in the future. - * To run this script make sure you have all the dependencies instralled + * To run this script make sure you have all the dependencies installed * and run it using $ node generateVectorDocuments.js * * The result of this script, which is a commit log for a 3IDv0 and a 3IDv1, diff --git a/packages/cli/src/daemon/handle-heapdump-signal.ts b/packages/cli/src/daemon/handle-heapdump-signal.ts index 90161f7a6f..b9d24aa73c 100644 --- a/packages/cli/src/daemon/handle-heapdump-signal.ts +++ b/packages/cli/src/daemon/handle-heapdump-signal.ts @@ -14,7 +14,7 @@ function timestamp(timestamp: Date = new Date()): string { * It takes time to make a heapdump. We log when the heapdumping starts and finishes in `${folder}/heapdump-progress` file. * * @param folder Folder that contains a heapdump. - * @param logger Used to annouce the heapdump events: when it is started and finished. + * @param logger Used to announce the heapdump events: when it is started and finished. */ export function handleHeapdumpSignal(folder: URL, logger: DiagnosticsLogger): void { process.on('SIGUSR2', () => { diff --git a/packages/cli/src/ipfs-connection-factory.ts b/packages/cli/src/ipfs-connection-factory.ts index cf4bfae95a..25ca52f190 100644 --- a/packages/cli/src/ipfs-connection-factory.ts +++ b/packages/cli/src/ipfs-connection-factory.ts @@ -24,7 +24,7 @@ export class IpfsConnectionFactory { agent: this.ipfsHttpAgent(ipfsEndpoint), }) - // TODO: WS1-1483 We utilize the `ipfs.config.get` method to retrieve the api address to use for recon calls. This prevents us from making unneccessary config changes until we are able to retrieve config data from the recon/rust-ceramic node. + // TODO: WS1-1483 We utilize the `ipfs.config.get` method to retrieve the api address to use for recon calls. This prevents us from making unnecessary config changes until we are able to retrieve config data from the recon/rust-ceramic node. ipfsApi.config.get = async (key: string): Promise => { if (key === 'Addresses.API') { return ipfsEndpoint diff --git a/packages/common/src/node-status-interface.ts b/packages/common/src/node-status-interface.ts index b1f3dd1aa8..a2117645da 100644 --- a/packages/common/src/node-status-interface.ts +++ b/packages/common/src/node-status-interface.ts @@ -101,7 +101,7 @@ export interface ActiveSyncStatus { startedAt: Date } export interface ContinuousSyncStatus { - // The first block recevied form the chain on node startup + // The first block received form the chain on node startup startBlock: number // The latest block received from the chain latestBlock: number diff --git a/packages/indexing/src/history-sync/sync-api.ts b/packages/indexing/src/history-sync/sync-api.ts index 2ca914acf6..68a78abbc2 100644 --- a/packages/indexing/src/history-sync/sync-api.ts +++ b/packages/indexing/src/history-sync/sync-api.ts @@ -75,7 +75,7 @@ export interface ActiveSyncStatus { startedAt: Date } export interface ContinuousSyncStatus { - // The first block recevied form the chain on node startup + // The first block received form the chain on node startup startBlock: number // The latest block received from the chain latestBlock: number diff --git a/packages/indexing/src/history-sync/utils.ts b/packages/indexing/src/history-sync/utils.ts index ceb1616ba2..0381b2f624 100644 --- a/packages/indexing/src/history-sync/utils.ts +++ b/packages/indexing/src/history-sync/utils.ts @@ -25,7 +25,7 @@ export class MerkleTreeLoader { } /** - * retreives the path to the leaf and the cid found at the provided index + * retrieves the path to the leaf and the cid found at the provided index * @param index index of the leaf * @returns promise for the cid stored in the leaf */