From cc6051f4a86000716070740528f0072478eec926 Mon Sep 17 00:00:00 2001 From: Elliot Winkler Date: Mon, 4 Dec 2023 19:53:09 -0700 Subject: [PATCH] Fix copypasta in JSDocs --- .../src/token-prices-service/codefi-v2.ts | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/packages/assets-controllers/src/token-prices-service/codefi-v2.ts b/packages/assets-controllers/src/token-prices-service/codefi-v2.ts index ac4be48341..344e2e6de7 100644 --- a/packages/assets-controllers/src/token-prices-service/codefi-v2.ts +++ b/packages/assets-controllers/src/token-prices-service/codefi-v2.ts @@ -154,9 +154,9 @@ type SupportedCurrency = | Uppercase<(typeof SUPPORTED_CURRENCIES)[number]>; /** - * The list of chain IDs that can be supplied as the `vsCurrency` parameter to - * the `/spot-prices` endpoint, but in hexadecimal form (for consistency with - * how we represent chain IDs in other places). + * The list of chain IDs that can be supplied in the URL for the `/spot-prices` + * endpoint, but in hexadecimal form (for consistency with how we represent + * chain IDs in other places). */ export const SUPPORTED_CHAIN_IDS = [ // Ethereum Mainnet @@ -227,8 +227,9 @@ export const SUPPORTED_CHAIN_IDS = [ ] as const; /** - * A currency that can be supplied as the `vsCurrency` parameter to - * the `/spot-prices` endpoint. Covers both uppercase and lowercase versions. + * A chain ID that can be supplied in the URL for the `/spot-prices` endpoint, + * but in hexadecimal form (for consistency with how we represent chain IDs in + * other places). */ type SupportedChainId = (typeof SUPPORTED_CHAIN_IDS)[number];