docs: change WASM/wasm to Wasm

That is the official capitalisation.
This commit is contained in:
ObserverOfTime 2025-08-19 12:32:46 +03:00
parent 7bc8f76667
commit 88e0b4cea4
36 changed files with 122 additions and 122 deletions

View file

@ -118,7 +118,7 @@ export function isPoint(point?: Point): point is Point {
/**
* @internal
*
* Sets the Tree-sitter WASM module. This should only be called by the {@link Parser} class via {@link Parser.init}.
* Sets the Tree-sitter Wasm module. This should only be called by the {@link Parser} class via {@link Parser.init}.
*/
export function setModule(module: MainModule) {
C = module;
@ -127,7 +127,7 @@ export function setModule(module: MainModule) {
/**
* @internal
*
* `C` is a convenient shorthand for the Tree-sitter WASM module,
* `C` is a convenient shorthand for the Tree-sitter Wasm module,
* which allows us to call all of the exported functions.
*/
export let C: MainModule;