Skip to content

Commit 5651394

Browse files
authored
Fix apostrophes in ReconnectModal.razor.js (#60816)
1 parent 4dc6e60 commit 5651394

File tree

1 file changed

+2
-2
lines changed
  • src/ProjectTemplates/Web.ProjectTemplates/content/BlazorWeb-CSharp/BlazorWeb-CSharp/Components/Layout

1 file changed

+2
-2
lines changed

src/ProjectTemplates/Web.ProjectTemplates/content/BlazorWeb-CSharp/BlazorWeb-CSharp/Components/Layout/ReconnectModal.razor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ async function retry() {
2424
// Reconnect will asynchronously return:
2525
// - true to mean success
2626
// - false to mean we reached the server, but it rejected the connection (e.g., unknown circuit ID)
27-
// - exception to mean we didn"t reach the server (this can be sync or async)
27+
// - exception to mean we didn't reach the server (this can be sync or async)
2828
const successful = await Blazor.reconnect();
2929
if (!successful) {
3030
// We have been able to reach the server, but the circuit is no longer available.
31-
// We"ll reload the page so the user can continue using the app as quickly as possible.
31+
// We'll reload the page so the user can continue using the app as quickly as possible.
3232
location.reload();
3333
}
3434
} catch (err) {

0 commit comments

Comments
 (0)