We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86223b9 commit dbc76d8Copy full SHA for dbc76d8
src/wasm.rs
@@ -116,7 +116,7 @@ mod fetch {
116
debug_assert!(resp.is_instance_of::<web_sys::Response>());
117
let res: web_sys::Response = resp.dyn_into().unwrap();
118
119
- // Get the request body.
+ // Get the response body.
120
let promise = res.array_buffer().unwrap();
121
let resp = JsFuture::from(promise).await.unwrap();
122
debug_assert!(resp.is_instance_of::<js_sys::ArrayBuffer>());
0 commit comments