From df0b62987f9091fc8a2685cd668a1b5613479ce0 Mon Sep 17 00:00:00 2001 From: compusophy <79760496+compusophy@users.noreply.github.com> Date: Tue, 19 Nov 2024 18:40:35 -0800 Subject: [PATCH] Update path in README.md (#2403) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Why is this change needed? The existing README.md for the write-data example contains an incorrect path, instructing users to navigate to the 'make-cast' instead of 'write-data'. ## Merge Checklist _Choose all relevant options below by adding an `x` now or at any time before submitting for review_ - [ ] PR title adheres to the [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) standard - [ ] PR has a [changeset](https://github.com/farcasterxyz/hub-monorepo/blob/main/CONTRIBUTING.md#35-adding-changesets) - [ ] PR has been tagged with a change label(s) (i.e. documentation, feature, bugfix, or chore) - [ ] PR includes [documentation](https://github.com/farcasterxyz/hub-monorepo/blob/main/CONTRIBUTING.md#32-writing-docs) if necessary. --- ## PR-Codex overview This PR updates the instructions in the `README.md` file for the `write-data` example in the `hub-nodejs` package. It corrects the navigation command and ensures the instructions are accurate for users. ### Detailed summary - Changed navigation command from `cd packages/hub-nodejs/examples/make-cast` to `cd packages/hub-nodejs/examples/write-data`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` --- packages/hub-nodejs/examples/write-data/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/hub-nodejs/examples/write-data/README.md b/packages/hub-nodejs/examples/write-data/README.md index 62705eb009..91a9d29594 100644 --- a/packages/hub-nodejs/examples/write-data/README.md +++ b/packages/hub-nodejs/examples/write-data/README.md @@ -11,6 +11,6 @@ We do not recommend running this example in a cloud environment because it requi ### Run locally 1. Clone the repo locally -2. Navigate to this folder with `cd packages/hub-nodejs/examples/make-cast` +2. Navigate to this folder with `cd packages/hub-nodejs/examples/write-data` 3. Run `yarn install` to install dependencies -4. Run `yarn start` \ No newline at end of file +4. Run `yarn start`