Skip to content

Commit

Permalink
fix the update
Browse files Browse the repository at this point in the history
  • Loading branch information
thechampagne committed Jan 21, 2025
1 parent d49669b commit 409fc8e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ exe.linkLibrary(webview.artifact("webviewStatic")); // or "webviewShared" for sh
const WebView = struct {
const WebViewVersionInfo = struct {
version = struct {
version: struct {
major: c_uint,
minor: c_uint,
patch: c_uint,
Expand Down Expand Up @@ -100,7 +100,7 @@ const WebView = struct {
fn terminate(self: WebView) WebViewError!void;
fn dispatch(self: WebView, ctx: anytype) WebViewError!void;
fn dispatch(self: WebView, ctx: *const CallbackContext) WebViewError!void;
fn getWindow(self: WebView) ?*anyopaque;
Expand All @@ -118,7 +118,7 @@ const WebView = struct {
fn eval(self: WebView, js: [:0]const u8) WebViewError!void;
fn bind(self: WebView, name: [:0]const u8, ctx: anytype) WebViewError!void;
fn bind(self: WebView, name: [:0]const u8, ctx: *const CallbackContext) WebViewError!void;
fn unbind(self: WebView, name: [:0]const u8) WebViewError!void;
Expand Down

0 comments on commit 409fc8e

Please sign in to comment.