Fix broken Markdown link in languages/grammars README#9343
Fix broken Markdown link in languages/grammars README#9343captainsafia merged 1 commit intowarpdotdev:masterfrom
Conversation
|
I'm starting a first review of this pull request. You can follow along in the session on Warp. I approved this pull request and requested human review from: @vorporeal, @alokedesai, @zachbai. Comment I approved this pull request. No matching stakeholder was found for the changed files, so no human reviewers were requested. Comment Powered by Oz |
There was a problem hiding this comment.
Overview
This PR fixes a malformed Markdown link in crates/languages/grammars/README.md so the Tree-sitter TSLanguage documentation renders as a clickable link.
Concerns
- No correctness, security, or spec-drift concerns found.
Verdict
Found: 0 critical, 0 important, 0 suggestions
Approve
Comment /oz-review on this pull request to retrigger a review (up to 3 times on the same pull request).
Powered by Oz
There was a problem hiding this comment.
Overview
This PR fixes a malformed Markdown link in crates/languages/grammars/README.md so the TSLanguage reference renders as a clickable link.
Concerns
- None.
Verdict
Found: 0 critical, 0 important, 0 suggestions
Approve
Comment /oz-review on this pull request to retrigger a review (up to 3 times on the same pull request).
Powered by Oz
## Description The link to the tree-sitter docs in `crates/languages/grammars/README.md` is missing the closing `]`, so GitHub renders it as plain text instead of a link: ```diff -We need a [TSLanguage(https://tree-sitter.github.io/tree-sitter/using-parsers#the-basic-objects) object to parse a source code file. +We need a [TSLanguage](https://tree-sitter.github.io/tree-sitter/using-parsers#the-basic-objects) object to parse a source code file. ``` ## Testing Docs-only change. Verified the rendered link is clickable in the GitHub Markdown preview. Co-authored-by: anshul-garg27 <[email protected]>
Description
The link to the tree-sitter docs in
crates/languages/grammars/README.mdis missing the closing], so GitHub renders it as plain text instead of a link:Testing
Docs-only change. Verified the rendered link is clickable in the GitHub Markdown preview.