Skip to content

Commit c3e12e1

Browse files
committed
Updates
1 parent 92e329b commit c3e12e1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

aspnetcore/blazor/fundamentals/signalr.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ In the `Program` file, call <xref:Microsoft.AspNetCore.Builder.ComponentEndpoint
491491

492492
## Reflect the server-side connection state in the UI
493493

494-
When the client detects that the connection has been lost, a default UI is displayed to the user while the client attempts to reconnect:
494+
When the client detects that the server connection is lost, a default UI is displayed to the user while the client attempts to reconnect:
495495

496496
:::moniker range=">= aspnetcore-9.0"
497497

@@ -547,7 +547,7 @@ To customize the UI, define a single element with an `id` of `components-reconne
547547

548548
:::moniker range="< aspnetcore-6.0"
549549

550-
To customize the UI, define a single element with an `id` of `components-reconnect-modal` in the `<body>` element content. The following example places the element in the host page. Because the element is unstyled, it appears at the bottom of the page.
550+
To customize the UI, define a single element with an `id` of `components-reconnect-modal` in the `<body>` element content. The following example places the element in the host page.
551551

552552
`Pages/_Host.cshtml`:
553553

@@ -643,7 +643,7 @@ To display the current reconnect attempt, define an element with an `id` of `com
643643
</div>
644644
```
645645

646-
When the custom reconnect modal appears, it renders the following content with an updating reconnect attempt counter:
646+
When the custom reconnect modal appears, it renders the following content with a reconnection attempt counter:
647647

648648
> :::no-loc text="There was a problem with the connection! (Current reconnect attempt: 1 / 8)":::
649649

0 commit comments

Comments
 (0)