Skip to content

Commit

Permalink
Merge pull request #2641 from alfarok/develop
Browse files Browse the repository at this point in the history
Failed to initialize WebView2 error message spelling
  • Loading branch information
cwensley committed Apr 10, 2024
2 parents ae78e85 + 10804af commit 3d289b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Eto.Wpf/Forms/Controls/WebView2Handler.cs
Expand Up @@ -477,7 +477,7 @@ void Control_CoreWebView2Ready(object sender, CoreWebView2InitializationComplete
{
if (!e.IsSuccess)
{
throw new WebView2InitializationException("Failed to initialze WebView2", e.InitializationException);
throw new WebView2InitializationException("Failed to initialize WebView2", e.InitializationException);
}

// can't actually do anything here, so execute them in the main loop
Expand Down

0 comments on commit 3d289b7

Please sign in to comment.