mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-29 21:11:33 +03:00
Merge pull request #903 from alexcrichton/doc-constructors
Add more documentation to `web-sys` constructors
This commit is contained in:
commit
7447c30ba4
@ -647,7 +647,13 @@ impl<'src> FirstPassRecord<'src> {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
let doc = match id {
|
let doc = match id {
|
||||||
OperationId::Constructor(_) | OperationId::Operation(None) => Some(String::new()),
|
OperationId::Operation(None) => Some(String::new()),
|
||||||
|
OperationId::Constructor(_) => {
|
||||||
|
Some(format!("The `new {}(..)` constructor, creating a new \
|
||||||
|
instance of `{0}`\n\n{}",
|
||||||
|
self_name,
|
||||||
|
mdn_doc(self_name, Some(self_name))))
|
||||||
|
}
|
||||||
OperationId::Operation(Some(name)) => Some(format!(
|
OperationId::Operation(Some(name)) => Some(format!(
|
||||||
"The `{}()` method\n\n{}",
|
"The `{}()` method\n\n{}",
|
||||||
name,
|
name,
|
||||||
|
Loading…
Reference in New Issue
Block a user