From c60264b87f3f19db6a84b405ee06077cd0bb8e3a Mon Sep 17 00:00:00 2001 From: Carlos Scheidegger <285675+cscheid@users.noreply.github.com> Date: Wed, 13 Aug 2025 15:56:21 -0400 Subject: [PATCH] docs(web): fix deno import example --- lib/binding_web/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/binding_web/README.md b/lib/binding_web/README.md index 7438aa04..d6cbc789 100644 --- a/lib/binding_web/README.md +++ b/lib/binding_web/README.md @@ -46,7 +46,7 @@ file to your `public` directory. You can do this automatically with a `postinsta You can also use this module with [deno](https://deno.land/): ```js -import Parser from "npm:web-tree-sitter"; +import { Parser } from "npm:web-tree-sitter"; await Parser.init(); // the library is ready ```