From 434199ce2bb4430ea7604f1fd16acf4b7c5664f2 Mon Sep 17 00:00:00 2001 From: anshul-garg27 Date: Wed, 29 Apr 2026 05:20:44 +0530 Subject: [PATCH] Fix broken Markdown link in languages/grammars README --- crates/languages/grammars/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/languages/grammars/README.md b/crates/languages/grammars/README.md index 3a749ac5..93006d72 100644 --- a/crates/languages/grammars/README.md +++ b/crates/languages/grammars/README.md @@ -2,7 +2,7 @@ Example of how to add a new language grammar: https://github.com/warpdotdev/warp-internal/pull/11501/files ## TSLanguage -We need a [TSLanguage(https://tree-sitter.github.io/tree-sitter/using-parsers#the-basic-objects) object to parse a source code file. We use open-source libraries that provide functions that create these objects. These functions are usually written in C but we can use them in Rust crates. +We need a [TSLanguage](https://tree-sitter.github.io/tree-sitter/using-parsers#the-basic-objects) object to parse a source code file. We use open-source libraries that provide functions that create these objects. These functions are usually written in C but we can use them in Rust crates. ## config.yaml You can find this information on language specific documentation and style guides.