From f1c7949f6289c3ac725f42f8a370c2526b42bf47 Mon Sep 17 00:00:00 2001 From: Bryan Stenson Date: Thu, 30 May 2024 00:36:44 -0700 Subject: [PATCH] typos --- server/docs/2.4/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/server/docs/2.4/README.md b/server/docs/2.4/README.md index 9c7ceaa..664b6d4 100644 --- a/server/docs/2.4/README.md +++ b/server/docs/2.4/README.md @@ -2194,7 +2194,7 @@ void my_c_function(webui_event_t* e) { webui_bind(myWindow, "my_c_function", my_c_function); ``` -JavsScript: +JavaScript: ```js my_c_function('Message from JS').then((response) => { @@ -2238,7 +2238,7 @@ void my_cpp_function(webui::event* e) { my_window.bind("my_cpp_function", my_cpp_function); ``` -JavsScript: +JavaScript: ```js my_cpp_function('Message from JS').then((response) => { @@ -2275,7 +2275,7 @@ def my_python_function(e : webui.event): my_window.bind("my_python_function", my_python_function) ``` -JavsScript: +JavaScript: ```js my_python_function('Message from JS').then((response) => { @@ -2304,7 +2304,7 @@ myWindow.bind("my_deno_function", ({ data }) => { }); ``` -JavsScript: +JavaScript: ```js my_deno_function('Message from JS').then((response) => { @@ -2339,7 +2339,7 @@ func my_go_function(e webui.Event) string { webui.Bind(my_window, "my_go_function", my_go_function) ``` -JavsScript: +JavaScript: ```js my_go_function('Message from JS').then((response) => { @@ -2411,7 +2411,7 @@ fn my_v_function(e &webui.Event) webui.Response { my_window.bind('my_v_function', my_v_function) ``` -JavsScript: +JavaScript: ```js my_v_function('Message from JS').then((response) => { @@ -2466,7 +2466,7 @@ fn my_zig_function(e: webui.Event) void { my_window.bind("my_zig_function", my_zig_function); ``` -JavsScript: +JavaScript: ```js my_zig_function('Message from JS').then((response) => { @@ -2502,7 +2502,7 @@ fn my_rust_function(e: webui::Event) -> String { win.bind("my_rust_function", my_rust_function); ``` -JavsScript: +JavaScript: ```js my_rust_function('Message from JS').then((response) => {