Fix typo in Blazor error handling docs (#28466)

pull/28455/head
axekan 2023-02-21 15:30:04 +01:00 committed by GitHub
parent 318fb3a18e
commit 6e93aa5c53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -593,7 +593,7 @@ In prerendered Blazor WebAssembly, prerendering works by:
If a component throws an unhandled exception during prerendering, for example, during a lifecycle method or in rendering logic: If a component throws an unhandled exception during prerendering, for example, during a lifecycle method or in rendering logic:
* In Blazor Sever apps, the exception is fatal to the circuit. In prerendered Blazor WebAssembly apps, the exception prevents rendering the component. * In Blazor Server apps, the exception is fatal to the circuit. In prerendered Blazor WebAssembly apps, the exception prevents rendering the component.
* The exception is thrown up the call stack from the <xref:Microsoft.AspNetCore.Mvc.TagHelpers.ComponentTagHelper>. * The exception is thrown up the call stack from the <xref:Microsoft.AspNetCore.Mvc.TagHelpers.ComponentTagHelper>.
Under normal circumstances when prerendering fails, continuing to build and render the component doesn't make sense because a working component can't be rendered. Under normal circumstances when prerendering fails, continuing to build and render the component doesn't make sense because a working component can't be rendered.