From ccfb458b04334ec5cfbf0c74246703f2b7b5c494 Mon Sep 17 00:00:00 2001 From: Donny <130464015+defitricks@users.noreply.github.com> Date: Tue, 10 Dec 2024 19:56:57 +0200 Subject: [PATCH] docs: Fix typo Update README.md (#2428) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Why is this change needed? Снимок экрана 2024-12-10 в 19 00 33 The problem lies in the use of "Cast's," which could be unclear or grammatically incorrect in this context. The possessive form of "Cast" may not be necessary here, and it could be better to rewrite it as: `console.log(`The first cast's text is ${response.messages[0].data.castAddBody.text}`);` ## Merge Checklist _Choose all relevant options below by adding an `x` now or at any time before submitting for review_ - [x] PR has been tagged with a change label(s) (i.e. documentation, feature, bugfix, or chore) --- ## PR-Codex overview This PR updates the wording in a log message for clarity. ### Detailed summary - Changed the log message from `First Cast's text is` to `The first cast's text is` to improve readability and consistency in the console output. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` --- packages/hub-web/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/hub-web/README.md b/packages/hub-web/README.md index f77f042124..60de8e17e4 100644 --- a/packages/hub-web/README.md +++ b/packages/hub-web/README.md @@ -33,7 +33,7 @@ try { const response = await axios.get(`${server}/v1/castsByFid?fid=${fid}`); console.log(`API Returned HTTP status ${response.status}`); - console.log(`First Cast's text is ${response.messages[0].data.castAddBody.text}`); + console.log(`The first cast's text is ${response.messages[0].data.castAddBody.text}`); } catch (e) { // Handle errors console.log(response);