1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-29 04:40:03 -04:00

Check for typos on CI (#2918)

* Check for typos on CI

* Fix all typos
This commit is contained in:
Emil Ernerfeldt
2023-04-18 16:10:20 +02:00
committed by GitHub
parent 77df9cb982
commit 4809747952
22 changed files with 60 additions and 33 deletions

View File

@@ -351,10 +351,10 @@ class WebHandle {
/**
* @param {string} _some_data
*/
set_some_content_from_javasript(_some_data) {
set_some_content_from_javascript(_some_data) {
const ptr0 = passStringToWasm0(_some_data, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
const len0 = WASM_VECTOR_LEN;
wasm.webhandle_set_some_content_from_javasript(this.ptr, ptr0, len0);
wasm.webhandle_set_some_content_from_javascript(this.ptr, ptr0, len0);
}
}
__exports.WebHandle = WebHandle;