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

@ -365,7 +365,7 @@ pub struct QueryCapture<'tree> {
/// An error that occurred when trying to assign an incompatible [`Language`] to
/// a [`Parser`]. If the `wasm` feature is enabled, this can also indicate a failure
/// to load the wasm store.
/// to load the Wasm store.
#[derive(Debug, PartialEq, Eq)]
pub enum LanguageError {
Version(usize),
@ -3737,7 +3737,7 @@ impl fmt::Display for LanguageError {
}
#[cfg(feature = "wasm")]
Self::Wasm => {
write!(f, "Failed to load the wasm store.")
write!(f, "Failed to load the Wasm store.")
}
}
}