summaryrefslogtreecommitdiffstats
path: root/vendor/web-sys/src/features/gen_DomStringMap.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/web-sys/src/features/gen_DomStringMap.rs')
-rw-r--r--vendor/web-sys/src/features/gen_DomStringMap.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/vendor/web-sys/src/features/gen_DomStringMap.rs b/vendor/web-sys/src/features/gen_DomStringMap.rs
index 533c2245a..e7e1c3ae5 100644
--- a/vendor/web-sys/src/features/gen_DomStringMap.rs
+++ b/vendor/web-sys/src/features/gen_DomStringMap.rs
@@ -13,21 +13,21 @@ extern "C" {
#[doc = "*This API requires the following crate features to be activated: `DomStringMap`*"]
pub type DomStringMap;
#[wasm_bindgen(method, structural, js_class = "DOMStringMap", indexing_getter)]
- #[doc = "Indexing getter."]
+ #[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `DomStringMap`*"]
pub fn get(this: &DomStringMap, name: &str) -> Option<String>;
#[wasm_bindgen(catch, method, structural, js_class = "DOMStringMap", indexing_setter)]
- #[doc = "Indexing setter."]
+ #[doc = "Indexing setter. As in the literal Javascript `this[key] = value`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `DomStringMap`*"]
pub fn set(this: &DomStringMap, name: &str, value: &str) -> Result<(), JsValue>;
#[wasm_bindgen(method, structural, js_class = "DOMStringMap", indexing_deleter)]
- #[doc = "Indexing deleter."]
+ #[doc = "Indexing deleter. As in the literal Javascript `delete this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]