Skip to content

Commit d402682

Browse files
authored
Fix lint errors (#36784)
1 parent 35cf242 commit d402682

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

docs/azure/sdk/includes/assign-local-dev-group-to-role-azure-portal-4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ The *Add role assignment* page lists all of the roles that can be assigned for t
22

33
1. Use the search box to filter the list to a more manageable size. This example shows how to filter for Storage Blob roles.
44
1. Select the role that you want to assign.
5-
<br>
5+
66
Select *Next* to go to the next screen.

docs/azure/sdk/includes/assign-managed-identity-to-role-azure-portal-4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ The *Add role assignment* page lists all of the roles that can be assigned for t
22

33
1. Use the search box to filter the list to a more manageable size. This example shows how to filter for Storage Blob roles.
44
1. Select the role that you want to assign.
5-
<br>
5+
66
Select *Next* to go to the next screen.

docs/azure/sdk/includes/assign-service-principal-to-role-azure-portal-4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ The *Add role assignment* page lists all of the roles that can be assigned for t
22

33
1. Use the search box to filter the list to a more manageable size. This example shows how to filter for Storage Blob roles.
44
1. Select the role that you want to assign.
5-
<br>
5+
66
Select *Next* to go to the next screen.

docs/core/compatibility/core-libraries/5.0/code-access-security-apis-obsolete.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ Due to CAS's deprecation, the [supporting infrastructure was not brought forward
428428
- `T:System.Security.Permissions.WebBrowserPermissionLevel`
429429
- `T:System.Security.Permissions.ZoneIdentityPermission`
430430
- `T:System.Security.Permissions.ZoneIdentityPermissionAttribute`
431-
- `M:`System.Security.Policy.ApplicationTrust.ApplicationTrust(PermissionSet, IEnumerable<StrongName>)`
431+
- `M:System.Security.Policy.ApplicationTrust.ApplicationTrust(PermissionSet, IEnumerable<StrongName>)`
432432
- `P:System.Security.Policy.ApplicationTrust.FullTrustAssemblies`
433433
- `T:System.Security.Policy.FileCodeGroup`
434434
- `T:System.Security.Policy.GacInstalled`

docs/core/extensions/windows-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ For more information on registering services, see [Dependency injection in .NET]
174174
To create the .NET Worker Service app as a Windows Service, it's recommended that you publish the app as a single file executable. It's less error-prone to have a self-contained executable, as there aren't any dependent files lying around the file system. But you may choose a different publishing modality, which is perfectly acceptable, so long as you create an **.exe* file that can be targeted by the Windows Service Control Manager.
175175
176176
> [!IMPORTANT]
177-
> An alternative publishing approach is to build the **.dll* (instead of an **.exe*), and when you install the published app using the Windows Service Control Manager you delegate to the .NET CLI and pass the DLL. For more information, see [.NET CLI: dotnet command](../tools/dotnet.md).
177+
> An alternative publishing approach is to build the *\*.dll* (instead of an *\*.exe*), and when you install the published app using the Windows Service Control Manager you delegate to the .NET CLI and pass the DLL. For more information, see [.NET CLI: dotnet command](../tools/dotnet.md).
178178
>
179179
> ```powershell
180180
> sc.exe create ".NET Joke Service" binpath="C:\Path\To\dotnet.exe C:\Path\To\App.WindowsService.dll"

docs/devops/github-actions-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ While there are plenty of GitHub Actions available in the [Marketplace](https://
2929

3030
## Workflow file
3131

32-
GitHub Actions are utilized through a workflow file. The workflow file must be located in the *.github/workflows* directory of the repository, and is expected to be YAML (either **.yml* or **.yaml*). Workflow files define the *workflow composition*. A workflow is a configurable automated process made up of one or more jobs. For more information, see [Workflow syntax for GitHub Actions](https://docs.github.com/actions/reference/workflow-syntax-for-github-actions).
32+
GitHub Actions are utilized through a workflow file. The workflow file must be located in the *.github/workflows* directory of the repository, and is expected to be YAML (either *\*.yml* or *\*.yaml*). Workflow files define the *workflow composition*. A workflow is a configurable automated process made up of one or more jobs. For more information, see [Workflow syntax for GitHub Actions](https://docs.github.com/actions/reference/workflow-syntax-for-github-actions).
3333

3434
### Example workflow files
3535

0 commit comments

Comments
 (0)