From 778957d1fc115d2bd29120d210a80377fc95c0ce Mon Sep 17 00:00:00 2001 From: Tyson Wynne <31785152+twynne20@users.noreply.github.com> Date: Fri, 9 Feb 2024 08:18:39 -0700 Subject: [PATCH] Update using-pyth-price-feeds.md (#314) This commit updates the tutorial documentation on using Pyth Price Feeds with Foundry to fix a TOML parse error encountered by users when setting up the foundry.toml file. The issue was identified in the "Installing Pyth smart contracts" section, where mismatched quotation marks in the remappings line caused a parse error. The original line used inconsistent quotes. The fix involves correcting the quotation marks to ensure consistency, thereby preventing the TOML parse error: `remappings = ['@pythnetwork/pyth-sdk-solidity/=lib/pyth-sdk-solidity']` --- .../docs/building-with-base/guides/using-pyth-price-feeds.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/base-docs/docs/building-with-base/guides/using-pyth-price-feeds.md b/apps/base-docs/docs/building-with-base/guides/using-pyth-price-feeds.md index d2986571e2..4ad29684cb 100644 --- a/apps/base-docs/docs/building-with-base/guides/using-pyth-price-feeds.md +++ b/apps/base-docs/docs/building-with-base/guides/using-pyth-price-feeds.md @@ -114,7 +114,7 @@ forge install pyth-network/pyth-sdk-solidity@v2.2.0 --no-git --no-commit Once installed, update your `foundry.toml` file by appending the following line: ```bash -remappings = ['@pythnetwork/pyth-sdk-solidity/=lib/pyth-sdk-solidity’] +remappings = ['@pythnetwork/pyth-sdk-solidity/=lib/pyth-sdk-solidity'] ``` ---