Skip to content

Commit 0593dc3

Browse files
authored
acrolinx (#33852)
1 parent 1d6aab5 commit 0593dc3

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

docs/azure/azure-tools.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Azure PowerShell is a PowerShell module of cmdlets for managing Azure resource d
2222
2323
## Azure Developer CLI (preview)
2424

25-
Azure Developer CLI (`azd`) is an open-source tool that accelerates the process of building cloud apps on Azure. The CLI provides best practice, developer-friendly commands that map to key stages in your workflow, whether youre working in the terminal, your editor or integrated development environment (IDE), or DevOps.
25+
Azure Developer CLI (`azd`) is an open-source tool that accelerates the process of building cloud apps on Azure. The CLI provides best practice, developer-friendly commands that map to key stages in your workflow, whether you're working in the terminal, your editor or integrated development environment (IDE), or DevOps.
2626

2727
You can use `azd` with extensible templates that include everything you need to get an application up and running in Azure. These templates include application code, and reusable infrastructure as code assets.
2828

docs/azure/install-azure-cli.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ recommendations: false
1111

1212
# Install the Azure CLI
1313

14-
In addition to the Azure Portal, Azure also offers the [Azure CLI](/cli/azure/) as a command-line tool to create and manage Azure resources. The Azure CLI offers the benefits of efficiency, repeatability, and the ability to script recurring tasks.
14+
In addition to the Azure portal, Azure also offers the [Azure CLI](/cli/azure/) as a command-line tool to create and manage Azure resources. The Azure CLI offers the benefits of efficiency, repeatability, and the ability to script recurring tasks.
1515

16-
In practice, most developers use both the Azure Portal and the Azure CLI. Where as the Azure Portal is useful when exploring new services and getting an overview of all of the resources in your Azure account, most developers find the Azure CLI to be faster and more efficient. The Azure CLI can often accomplish in a single command what takes multiple steps in the Azure Portal. In addition, since Azure CLI commands can be saved to a file, developers can assure that recurrent tasks are run the same way each time.
16+
In practice, most developers use both the Azure portal and the Azure CLI. Whereas the Azure portal is useful when exploring new services and getting an overview of all of the resources in your Azure account, most developers find the Azure CLI to be faster and more efficient. The Azure CLI can often accomplish in a single command what takes multiple steps in the Azure portal. In addition, since Azure CLI commands can be saved to a file, you can ensure that recurrent tasks are run the same way each time.
1717

1818
The Azure CLI is available for Windows, macOS, and Linux.
1919

@@ -26,12 +26,12 @@ The Azure CLI is available for Windows, macOS, and Linux.
2626
> [!div class="nextstepaction"]
2727
> [Install the Azure CLI for Linux](/cli/azure/install-azure-cli-linux)
2828
29-
### Azure Cloud Shell
29+
## Azure Cloud Shell
3030

31-
You can also use the Azure CLI in the Azure Cloud Shell at [https://shell.azure.com](https://shell.azure.com). The Azure Cloud Shell is a fully functional, browser-based shell for managing Azure resources. The Azure Cloud Shell is useful when you need a command line environment but are working on a device where you are unable to install the Azure CLI.
31+
You can also use the Azure CLI in the Azure Cloud Shell at [https://shell.azure.com](https://shell.azure.com). The Azure Cloud Shell is a fully functional, browser-based shell for managing Azure resources. The Azure Cloud Shell is useful when you need a command line environment but are working on a device where you're unable to install the Azure CLI.
3232

3333
![Screenshot of the Azure Cloud Shell running in a browser](media/azure-cloud-shell.png)
3434

35-
### Next steps
35+
## Next steps
3636

37-
Next, you will want to [install additional Azure tools](./azure-tools.md) like Azure Storage Explorer and Azure Data Studio to make you more productive with Azure.
37+
Next, you'll want to [install other Azure tools](./azure-tools.md) like Azure Storage Explorer and Azure Data Studio to make you more productive with Azure.

docs/core/compatibility/core-libraries/8.0/anonymouspipeserverstream-dispose.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Starting in .NET 8, the client handle owned by a server that was created for out
2121

2222
## Type of breaking change
2323

24-
This is a [behavioral change](../../categories.md#behavioral-change).
24+
This change is a [behavioral change](../../categories.md#behavioral-change).
2525

2626
## Reason for change
2727

docs/core/diagnostics/metrics-collection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ dotnet add package OpenTelemetry.Exporter.Prometheus --version 1.2.0-beta1
168168
> to the application.
169169
170170
> [!NOTE]
171-
> This tutorial is using a pre-release build of OpenTelemetry's Prometheus support available at the time of writing. The OpenTelemetry
171+
> This tutorial uses a pre-release build of OpenTelemetry's Prometheus support available at the time of writing. The OpenTelemetry
172172
> project maintainers might make changes prior to the official release.
173173
174174
Modify the code of `Program.cs` so that it contains the extra code to configure OpenTelemetry at the beginning of Main():

docs/core/extensions/sslstream-migration-from-framework.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
2-
title: Migrate SSL code from .NET Framework to .NET
2+
title: Migrate SslStream code from .NET Framework to .NET
33
description: Learn how to migrate code that uses SslStream in .NET Framework to .NET.
44
author: rzikm
55
ms.author: radekzikmund
66
ms.date: 1/9/2023
77
---
88

9-
# Migrate SSL code from .NET Framework to .NET
9+
# Migrate SslStream code from .NET Framework to .NET
1010

1111
.NET Core brought many improvements as well as breaking changes to how <xref:System.Net.Security.SslStream> works. The most important change related to network security is that the <xref:System.Net.ServicePointManager> class has been mostly obsoleted and affects only the legacy <xref:System.Net.WebRequest> interface.
1212

13-
For each <xref:System.Net.Security.SslStream> instance, you must configure the allowed SSL/TLS protocols and certificate validation callbacks separately via <xref:System.Net.Security.SslServerAuthenticationOptions> or <xref:System.Net.Security.SslClientAuthenticationOptions>. To configure network security options used in HTTPS in <xref:System.Net.Http.HttpClient>, you need to configure the security options in the underlying handler. The default handler used by <xref:System.Net.Http.HttpClient> is <xref:System.Net.Http.SocketsHttpHandler>, which has an <xref:System.Net.Http.SocketsHttpHandler.SslOptions> property that accepts <xref:System.Net.Security.SslClientAuthenticationOptions>.
13+
For each <xref:System.Net.Security.SslStream> instance, you must configure the allowed TLS protocols and certificate validation callbacks separately via <xref:System.Net.Security.SslServerAuthenticationOptions> or <xref:System.Net.Security.SslClientAuthenticationOptions>. To configure network security options used in HTTPS in <xref:System.Net.Http.HttpClient>, you need to configure the security options in the underlying handler. The default handler used by <xref:System.Net.Http.HttpClient> is <xref:System.Net.Http.SocketsHttpHandler>, which has an <xref:System.Net.Http.SocketsHttpHandler.SslOptions> property that accepts <xref:System.Net.Security.SslClientAuthenticationOptions>.
1414

1515
Consider the following example that demonstrates how to create an <xref:System.Net.Http.HttpClient> with a custom certificate validation callback:
1616

@@ -36,7 +36,7 @@ HttpClient httpClient = new(
3636
});
3737
```
3838

39-
The following table show how to migrate individual <xref:System.Net.ServicePointManager> properties related to SSL/TLS.
39+
The following table shows how to migrate individual <xref:System.Net.ServicePointManager> properties related to TLS.
4040

4141
| Source API | Target API |
4242
|---|---|

docs/csharp/versioning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The most basic approach to SemVer is the 3 component format `MAJOR.MINOR.PATCH`,
2525
- `MINOR` is incremented when you add functionality in a backwards-compatible manner
2626
- `PATCH` is incremented when you make backwards-compatible bug fixes
2727

28-
There are also ways to specify other scenarios like pre-release versions etc. when applying version information to your .NET library.
28+
There are also ways to specify other scenarios, for example, pre-release versions, when applying version information to your .NET library.
2929

3030
### Backwards Compatibility
3131

0 commit comments

Comments
 (0)