diff --git a/.changeset/bumpy-cloths-grab.md b/.changeset/bumpy-cloths-grab.md new file mode 100644 index 0000000000..aca562563c --- /dev/null +++ b/.changeset/bumpy-cloths-grab.md @@ -0,0 +1,8 @@ +--- +'@chainlink/token-allocation-adapter': patch +'@chainlink/cryptocompare-adapter': patch +'@chainlink/generic-api-adapter': patch +'@chainlink/ea-reference-data-reader': patch +--- + +chore: fix some minor issues in comments diff --git a/packages/non-deployable/token-allocation/README.md b/packages/non-deployable/token-allocation/README.md index 3c8ba0cbe1..fd29d6ac02 100644 --- a/packages/non-deployable/token-allocation/README.md +++ b/packages/non-deployable/token-allocation/README.md @@ -6,7 +6,7 @@ This adapter accepts a list of currencies and quantities, and returns the total The adapter takes the following environment variables: -To be functional at least one of the following underyling adapter locations will need to be provided. +To be functional at least one of the following underlying adapter locations will need to be provided. | Required? | Name | Description | Options | Defaults to | | :-------: | :-----------------------------: | :-------------------------------------------------: | :-----: | :---------: | diff --git a/packages/sources/cryptocompare/test/e2e/adapter.test.ts b/packages/sources/cryptocompare/test/e2e/adapter.test.ts index def6376a2f..3fe946b86d 100644 --- a/packages/sources/cryptocompare/test/e2e/adapter.test.ts +++ b/packages/sources/cryptocompare/test/e2e/adapter.test.ts @@ -77,7 +77,7 @@ describe('execute', () => { throw new Error('Could not start server when running CryptoCompare e2e tests') } - // Send inital requests to warm the cache + // Send initial requests to warm the cache const pendingRequests: Test[] = [] for (const reqData of Object.values(successfulRequests)) { pendingRequests.push(req.post('/').send(reqData)) diff --git a/packages/sources/generic-api/README.md b/packages/sources/generic-api/README.md index 73edb6197e..b94dadb52f 100644 --- a/packages/sources/generic-api/README.md +++ b/packages/sources/generic-api/README.md @@ -14,7 +14,7 @@ To support a specific value for input parameter `apiName`, the environment varia | :-------: | :---------------------------: | :---------------------------------------------------: | :----: | | ✅ | {API_NAME}\_API_URL | The API URL to use for a given `apiUrl`. | string | | | {API_NAME}\_AUTH_HEADER | The header to pass the authentication credentials on. | string | -| | {API_NAME}\_AUTH_HEADER_VALUE | The credentials to pass on the authentcation header. | string | +| | {API_NAME}\_AUTH_HEADER_VALUE | The credentials to pass on the authentication header. | string | --- diff --git a/packages/sources/layer2-sequencer-health/src/endpoint/health.ts b/packages/sources/layer2-sequencer-health/src/endpoint/health.ts index 75ae50ee6a..131de4b319 100644 --- a/packages/sources/layer2-sequencer-health/src/endpoint/health.ts +++ b/packages/sources/layer2-sequencer-health/src/endpoint/health.ts @@ -151,6 +151,6 @@ export const execute: ExecuteWithConfig = async (request, _, con } } - // Every method succeded. Network is healthy + // Every method succeeded. Network is healthy return _respond(true) }