Skip to content

Commit adfd3a6

Browse files
authored
Remove duplicate words (#34573)
1 parent 70ef48e commit adfd3a6

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

aspnetcore/blazor/host-and-deploy/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ To provide configuration for the Blazor app's base path of `https://www.contoso.
196196

197197
By configuring the app base path, a component that isn't in the root directory can construct URLs relative to the app's root path. Components at different levels of the directory structure can build links to other resources at locations throughout the app. The app base path is also used to intercept selected hyperlinks where the `href` target of the link is within the app base path URI space. The <xref:Microsoft.AspNetCore.Components.Routing.Router> component handles the internal navigation.
198198

199-
Place the the `<base>` tag in `<head>` markup ([location of `<head>` content](xref:blazor/project-structure#location-of-head-and-body-content)) before any elements with attribute values that are URLs, such as the `href` attributes of `<link>` elements.
199+
Place the `<base>` tag in `<head>` markup ([location of `<head>` content](xref:blazor/project-structure#location-of-head-and-body-content)) before any elements with attribute values that are URLs, such as the `href` attributes of `<link>` elements.
200200

201201
:::moniker range=">= aspnetcore-8.0"
202202

aspnetcore/blazor/security/webassembly/standalone-with-identity/qrcodes-for-authenticator-apps.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Add a package reference to the client project for the [`Net.Codecrete.QrCodeGene
5151

5252
Set the site name in the app settings file of the client project. Use a meaningful site name that users can identify easily in their authenticator app. Developers usually set a site name that matches the company's name. We recommend limiting the site name length to 30 characters or less to allow the site name to display on narrow mobile device screens.
5353

54-
In the following example, the the company name is `Weyland-Yutani Corporation` (&copy;1986 20th Century Studios [*Aliens*](https://www.20thcenturystudios.com/movies/aliens)).
54+
In the following example, the company name is `Weyland-Yutani Corporation` (&copy;1986 20th Century Studios [*Aliens*](https://www.20thcenturystudios.com/movies/aliens)).
5555

5656
Added to `wwwroot/appsettings.json`:
5757

@@ -858,7 +858,7 @@ If 2FA is enabled, buttons appear to disable 2FA and regenerate recovery codes.
858858
}
859859
```
860860

861-
## Link to the the Manage 2FA page
861+
## Link to the Manage 2FA page
862862

863863
Add a link to the navigation menu for users to reach the `Manage2fa` component page.
864864

aspnetcore/blazor/tutorials/movie-database-app/part-4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ Navigate to the movies `Index` page to see the seeded movies:
265265

266266
## Bind a form to a model
267267

268-
Review the the `Edit` component (`Components/Pages/MoviePages/Edit.razor`).
268+
Review the `Edit` component (`Components/Pages/MoviePages/Edit.razor`).
269269

270270
When an HTTP GET request is made for the `Edit` component page (for example at the relative URL: `/movies/edit?id=6`):
271271

aspnetcore/diagnostics/asp0028.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ On the server machine that supports `IPv6`, [IPv6Any](/dotnet/api/system.net.ipa
2121

2222
`127.0.0.1` is the IPv4 loopback address. `::1` is the IPv6 loopback address. `Any` is the wildcard address for IPv4. `IPv6Any` is the wildcard address for IPv6.
2323

24-
Current behavior with with IPv6 when using HTTP/1.x or HTTP/2.0:
24+
Current behavior with IPv6 when using HTTP/1.x or HTTP/2.0:
2525

2626
* `localhost` resolves to `[::1]`.
2727
* `[::1]` isn't accepted by the server, which forces a retry using `127.0.0.1`, creating a repeated cycle.

aspnetcore/security/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ There are more vulnerabilities that you should be aware of. For more information
4747

4848
## Secure authentication flows
4949

50-
We recommend using the most secure secure authentication option. For Azure services, the most secure authentication is [managed identities](/entra/identity/managed-identities-azure-resources/overview).
50+
We recommend using the most secure authentication option. For Azure services, the most secure authentication is [managed identities](/entra/identity/managed-identities-azure-resources/overview).
5151

5252
Avoid Resource Owner Password Credentials Grant because it:
5353

0 commit comments

Comments
 (0)