From 4d25917ee002cb705037874cc7705aa93e306c5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Ducha=C3=AEne?= <11084784+duchainer@users.noreply.github.com> Date: Thu, 5 Mar 2026 08:35:14 -0500 Subject: [PATCH] Fix tree-sitter playground link in README Corrected the URL for the tree-sitter playground. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c86be5d..ff451c6 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ It's worth reading the [tree-sitter query docs](https://tree-sitter.github.io/tr as a starting point Then for figuring out what the relevant tree-sitter AST structure is for a query you'd like -to write, a tree-sitter "playground" is invaluable, eg the [interactive online one](https://tree-sitter.github.io/tree-sitter/playground) +to write, a tree-sitter "playground" is invaluable, eg the [interactive online one](https://tree-sitter.github.io/tree-sitter/7-playground.html) or I use neovim's `:InspectTree` In my experience while tree-sitter queries are a solid starting point,