@@ -5,7 +5,7 @@ additional work on the host app, so we are proposing the `BrowserProcessExited`
55event. The ` ProcessFailed ` event already lets app developers handle unexpected
66browser process exits for a WebView; this new API lets you listen to both
77expected and unexpected termination of the collection of processes associated to
8- a ` CoreWebView2Environment ` so you can, e.g. , cleanup the user data folder when
8+ a ` CoreWebView2Environment ` so you can, for example , cleanup the user data folder when
99it's no longer in use. In this document we describe the new API. We'd appreciate
1010your feedback.
1111
@@ -305,7 +305,7 @@ interface ICoreWebView2Environment3 : ICoreWebView2Environment2
305305 /// Add an event handler for the ` BrowserProcessExited ` event.
306306 /// The ` BrowserProcessExited ` event is raised when the collection of WebView2
307307 /// Runtime processes associated to this environment terminate due to a
308- /// browser process error or normal shutdown (e.g. , when all associated
308+ /// browser process error or normal shutdown (for example , when all associated
309309 /// WebViews are closed), after all resources (including the user data folder)
310310 /// have been released.
311311 ///
@@ -390,7 +390,7 @@ namespace Microsoft.Web.WebView2.Core
390390
391391 /// `BrowserProcessExited` is raised when the collection of WebView2
392392 /// Runtime processes associated to this `CoreWebView2Environment` terminate due to a
393- /// browser process error or normal shutdown (e.g. , when all associated
393+ /// browser process error or normal shutdown (for example , when all associated
394394 /// WebViews are closed), after all resources (including the user data folder)
395395 /// have been released.
396396 ///
@@ -439,7 +439,7 @@ handler for `BrowserProcessExited` will only be interested in the next single
439439time the browser process exits (even if there could be more browser processes
440440being created and exiting throughout the lifetime of a
441441` CoreWebView2Environment ` ). For this reason, we also consider making this event
442- an async method instead (e.g. , ` RegisterWaitForBrowserProcessExit ` ).
442+ an async method instead (for example , ` RegisterWaitForBrowserProcessExit ` ).
443443
444444While there would be no operation started on calling the async method, a handler
445445would be a added to be run (only) the next time the browser process associated
0 commit comments