diff --git a/public/samples/APIRequests/APIConsumerForwarder.sol b/public/samples/APIRequests/APIConsumerForwarder.sol index d218067990e..2e5b8745ea3 100644 --- a/public/samples/APIRequests/APIConsumerForwarder.sol +++ b/public/samples/APIRequests/APIConsumerForwarder.sol @@ -57,8 +57,8 @@ contract APIConsumerForwarder is ChainlinkClient, ConfirmedOwner { // Set the path to find the desired data in the API response, where the response format is: // [{ - // "id": "bitcoin", - // "symbol": btc", + // "id": "bitcoin", + // "symbol": "btc", // ... // }, //{ diff --git a/public/samples/APIRequests/FetchFromArray.sol b/public/samples/APIRequests/FetchFromArray.sol index c286f46107d..804d78ac233 100644 --- a/public/samples/APIRequests/FetchFromArray.sol +++ b/public/samples/APIRequests/FetchFromArray.sol @@ -55,8 +55,8 @@ contract FetchFromArray is ChainlinkClient, ConfirmedOwner { // Set the path to find the desired data in the API response, where the response format is: // [{ - // "id": "bitcoin", - // "symbol": btc", + // "id": "bitcoin", + // "symbol": "btc", // ... // }, //{ diff --git a/public/samples/CCIP/TokenTransferor.sol b/public/samples/CCIP/TokenTransferor.sol index 17e763bc5fe..26c4bd17c34 100644 --- a/public/samples/CCIP/TokenTransferor.sol +++ b/public/samples/CCIP/TokenTransferor.sol @@ -116,7 +116,7 @@ contract TokenTransferor is OwnerIsCreator { returns (bytes32 messageId) { // Create an EVM2AnyMessage struct in memory with necessary information for sending a cross-chain message - // address(linkToken) means fees are paid in LINK + // address(linkToken) means fees are paid in LINK Client.EVM2AnyMessage memory evm2AnyMessage = _buildCCIPMessage(_receiver, _token, _amount, address(s_linkToken)); // Get the fee required to send the message diff --git a/public/samples/DataStreams/ClientReportsVerifier.sol b/public/samples/DataStreams/ClientReportsVerifier.sol index dc022ecf5f2..2ee4da77201 100644 --- a/public/samples/DataStreams/ClientReportsVerifier.sol +++ b/public/samples/DataStreams/ClientReportsVerifier.sol @@ -28,7 +28,7 @@ using SafeERC20 for IERC20; */ // ──────────────────────────────────────────────────────────────────────────── -// Interfaces +// Interfaces // ──────────────────────────────────────────────────────────────────────────── interface IVerifierProxy { @@ -68,7 +68,7 @@ interface IFeeManager { } // ──────────────────────────────────────────────────────────────────────────── -// Contract +// Contract // ──────────────────────────────────────────────────────────────────────────── /** diff --git a/src/components/CCIP/ChainHero/LaneDetailsHero.tsx b/src/components/CCIP/ChainHero/LaneDetailsHero.tsx index 8c96ef2fde5..14d75b5c979 100644 --- a/src/components/CCIP/ChainHero/LaneDetailsHero.tsx +++ b/src/components/CCIP/ChainHero/LaneDetailsHero.tsx @@ -88,7 +88,7 @@ function LaneDetailsHero({ explorer, inOutbound, }: LaneDetailsHeroProps) { - // Map boolean values to display strings + // Map Out-of-Order flag to display text const getOutOfOrderText = (value?: boolean) => { if (value === true) return "Required" if (value === false) return "Optional" diff --git a/src/scripts/link-check/linkcheck.ts b/src/scripts/link-check/linkcheck.ts index 72bd1e2d628..d77ee69daa2 100644 --- a/src/scripts/link-check/linkcheck.ts +++ b/src/scripts/link-check/linkcheck.ts @@ -8,7 +8,7 @@ declare global { } // ================================ -// CONFIGURABLE CONSTANTS +// CONFIGURABLE CONSTANTS // ================================ const BASE_URL = "http://localhost:4321" const TEMP_DIR = `${cwd()}/temp` @@ -17,7 +17,7 @@ const LOG_FILE = `${TEMP_DIR}/link-checker.log` const LINK_CHUNK_SIZE = 150 // ================================ -// HELPER FUNCTIONS +// HELPER FUNCTIONS // ================================ /** @@ -267,7 +267,7 @@ function checkChunkFile(linksFile: string, mode: "internal" | "external"): Promi } // ================================ -// MAIN LOGIC +// MAIN LOGIC // ================================ async function main() {