Skip to content

Commit e5c20e6

Browse files
committed
proofread fixes
1 parent e954045 commit e5c20e6

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

aspnetcore/security/app-secrets.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,10 +205,10 @@ The `Movies:ConnectionString` and `Movies:ServiceApiKey` secrets are mapped to t
205205
Storing passwords in plain text is insecure. For example, a database connection string stored in `appsettings.json` should not include a password. Instead, store the password as a secret, and include the password in the connection string at runtime. For example:
206206

207207
```dotnetcli
208-
dotnet user-secrets set "DbPassword" "<CREDENTIAL_PLACEHOLDER>"
208+
dotnet user-secrets set "DbPassword" "`<secret value>`"
209209
```
210210

211-
Replace the placeholder in the preceding example with the password value. Set the secret's value on a <xref:System.Data.SqlClient.SqlConnectionStringBuilder> object's <xref:System.Data.SqlClient.SqlConnectionStringBuilder.Password%2A> property to include it as the password value in the connection string:
211+
Replace the `<secret value>` placeholder in the preceding example with the password value. Set the secret's value on a <xref:System.Data.SqlClient.SqlConnectionStringBuilder> object's <xref:System.Data.SqlClient.SqlConnectionStringBuilder.Password%2A> property to include it as the password value in the connection string:
212212

213213
[!code-csharp[](~/security/app-secrets/samples/6.x/UserSecrets/Program.cs?name=snippet_sql&highlight=5-8)]
214214

aspnetcore/signalr/redis-backplane.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ description: Learn how to set up a Redis backplane to enable scale-out for an AS
55
monikerRange: '>= aspnetcore-2.1'
66
ms.author: wpickett
77
ms.custom: mvc
8-
ms.date: 02/06/2024
8+
ms.date: 10/31/2024
99
uid: signalr/redis-backplane
1010
---
11-
11+
<!-- ms.sfi.ropc: t -->
1212
# Set up a Redis backplane for ASP.NET Core SignalR scale-out
1313

1414
By [Andrew Stanton-Nurse](https://twitter.com/anurse), [Brady Gaster](https://twitter.com/bradygaster), and [Tom Dykstra](https://github.com/tdykstra).

aspnetcore/signalr/redis-backplane/includes/redis-backplane2.2.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
:::moniker range="= aspnetcore-2.2"
2+
<!-- ms.sfi.ropc: t -->
23

34
This article explains SignalR-specific aspects of setting up a [Redis](https://redis.io/) server to use for scaling out an ASP.NET Core SignalR app.
45

0 commit comments

Comments
 (0)