docs(git,time): fix invalid JSON in Zed uvx config examples#3989
Open
abhicris wants to merge 1 commit intomodelcontextprotocol:mainfrom
Open
docs(git,time): fix invalid JSON in Zed uvx config examples#3989abhicris wants to merge 1 commit intomodelcontextprotocol:mainfrom
abhicris wants to merge 1 commit intomodelcontextprotocol:mainfrom
Conversation
The "Using uvx" Zed configuration snippets in src/git/README.md and src/time/README.md wrapped an object-style key-value entry in square brackets, producing invalid JSON. Switch to curly braces so the example parses and matches the adjacent "Using pip" snippets in the same files. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The ""Using uvx"" Zed configuration snippets in
src/git/README.mdandsrc/time/README.mdwrap an object-style key-value entry in square brackets:That is not valid JSON — the key-with-colon form only parses inside an object. The adjacent ""Using pip"" snippets in the same files already use the correct
{ ... }form, so this change just makes the uvx variants consistent with them.Why
Users copy-pasting the uvx example straight into Zed's
settings.jsonwill hit a JSON parse error. Switching the two brackets to braces makes the example parse and matches the corrected pattern from PR #114 (which fixed the same issue elsewhere in the repo but missed these two uvx blocks).Scope
Types of changes
Part of open-source blockchain work from kcolbchain.com — maintained by Abhishek Krishna. PR opened via kcolbchain contrib-bot.