From a57e5623aa706e77752271810ac59cb2026b4fc6 Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Wed, 27 May 2020 09:37:36 -0500 Subject: [PATCH] Change en dash layout elements to colon-space syntax (#18506) * Change en dash layout elements to colon-space syntax * Update * Update --- .../blazor/call-javascript-from-dotnet.md | 4 +- aspnetcore/blazor/call-web-api.md | 14 ++-- .../BlazorServerSample/Shared/NavMenu.razor | 4 +- .../Shared/NavMenu.razor | 4 +- aspnetcore/blazor/components.md | 6 +- aspnetcore/blazor/dependency-injection.md | 4 +- aspnetcore/blazor/event-handling.md | 2 +- aspnetcore/blazor/hosting-models.md | 2 +- aspnetcore/blazor/integrate-components.md | 4 +- aspnetcore/blazor/progressive-web-app.md | 4 +- aspnetcore/blazor/routing.md | 8 +-- aspnetcore/blazor/state-management.md | 4 +- aspnetcore/blazor/templates.md | 40 +++++------ aspnetcore/fundamentals/change-tokens.md | 8 +-- .../fundamentals/configuration/index.md | 10 +-- .../fundamentals/configuration/options.md | 12 ++-- .../fundamentals/dependency-injection.md | 4 +- aspnetcore/fundamentals/file-providers.md | 8 +-- .../fundamentals/host/hosted-services.md | 8 +-- .../host/platform-specific-configuration.md | 28 ++++---- aspnetcore/fundamentals/logging/index.md | 18 ++--- .../fundamentals/logging/loggermessage.md | 8 +-- aspnetcore/fundamentals/routing.md | 4 +- aspnetcore/fundamentals/servers/httpsys.md | 72 +++++++++---------- aspnetcore/fundamentals/servers/index.md | 6 +- aspnetcore/fundamentals/servers/kestrel.md | 14 ++-- aspnetcore/fundamentals/url-rewriting.md | 8 +-- aspnetcore/grpc/comparison.md | 14 ++-- .../host-and-deploy/aspnet-core-module.md | 10 +-- .../azure-iis-errors-reference.md | 12 ++-- aspnetcore/host-and-deploy/blazor/index.md | 6 +- .../host-and-deploy/blazor/webassembly.md | 14 ++-- .../docker/visual-studio-tools-for-docker.md | 8 +-- aspnetcore/host-and-deploy/health-checks.md | 16 ++--- .../iis/development-time-iis-support.md | 4 +- aspnetcore/host-and-deploy/iis/index.md | 46 ++++++------ .../host-and-deploy/proxy-load-balancer.md | 12 ++-- .../visual-studio-publish-profiles.md | 8 +-- aspnetcore/host-and-deploy/web-farm.md | 16 ++--- aspnetcore/host-and-deploy/windows-service.md | 40 +++++------ .../includes/blazor-security/troubleshoot.md | 4 +- aspnetcore/migration/22-to-30.md | 16 ++--- aspnetcore/mvc/controllers/testing.md | 2 +- aspnetcore/mvc/overview.md | 2 +- aspnetcore/performance/caching/distributed.md | 24 +++---- aspnetcore/performance/caching/middleware.md | 8 +-- aspnetcore/performance/caching/response.md | 4 +- aspnetcore/razor-pages/sdk.md | 10 +-- aspnetcore/release-notes/aspnetcore-3.0.md | 10 +-- aspnetcore/security/anti-request-forgery.md | 2 +- .../security/authentication/certauth.md | 4 +- .../identity-custom-storage-providers.md | 2 +- .../social/additional-claims.md | 2 +- .../blazor/content-security-policy.md | 16 ++--- aspnetcore/security/blazor/index.md | 2 +- aspnetcore/security/blazor/server/index.md | 2 +- .../hosted-with-azure-active-directory-b2c.md | 2 +- .../hosted-with-azure-active-directory.md | 2 +- aspnetcore/security/cors.md | 44 ++++++------ .../security/key-vault-configuration.md | 8 +-- .../samples/2.x/SampleApp/README.md | 4 +- .../samples/3.x/SampleApp/README.md | 4 +- aspnetcore/signalr/diagnostics.md | 4 +- aspnetcore/signalr/javascript-client.md | 8 +-- aspnetcore/test/integration-tests.md | 4 +- aspnetcore/test/load-tests.md | 4 +- aspnetcore/test/troubleshoot.md | 6 +- aspnetcore/tutorials/first-mongo-app.md | 24 +++---- .../samples/3.x/SampleApp/readme.md | 12 ++-- .../tutorials/getting-started-with-NSwag.md | 4 +- aspnetcore/tutorials/grpc/grpc-start.md | 8 +-- 71 files changed, 381 insertions(+), 381 deletions(-) diff --git a/aspnetcore/blazor/call-javascript-from-dotnet.md b/aspnetcore/blazor/call-javascript-from-dotnet.md index ce2a4c56a7df..58ae70f9b0e0 100644 --- a/aspnetcore/blazor/call-javascript-from-dotnet.md +++ b/aspnetcore/blazor/call-javascript-from-dotnet.md @@ -71,8 +71,8 @@ To use the abstraction, adopt any of the f In the client-side sample app that accompanies this topic, two JavaScript functions are available to the app that interact with the DOM to receive user input and display a welcome message: -* `showPrompt` – Produces a prompt to accept user input (the user's name) and returns the name to the caller. -* `displayWelcome` – Assigns a welcome message from the caller to a DOM object with an `id` of `welcome`. +* `showPrompt`: Produces a prompt to accept user input (the user's name) and returns the name to the caller. +* `displayWelcome`: Assigns a welcome message from the caller to a DOM object with an `id` of `welcome`. *wwwroot/exampleJsInterop.js*: diff --git a/aspnetcore/blazor/call-web-api.md b/aspnetcore/blazor/call-web-api.md index b2fd0edd9c23..7cc93522d207 100644 --- a/aspnetcore/blazor/call-web-api.md +++ b/aspnetcore/blazor/call-web-api.md @@ -57,9 +57,9 @@ The client's base address is set to the originating server's address. Inject an In the following examples, a Todo web API processes create, read, update, and delete (CRUD) operations. The examples are based on a `TodoItem` class that stores the: -* ID (`Id`, `long`) – Unique ID of the item. -* Name (`Name`, `string`) – Name of the item. -* Status (`IsComplete`, `bool`) – Indication if the Todo item is finished. +* ID (`Id`, `long`): Unique ID of the item. +* Name (`Name`, `string`): Name of the item. +* Status (`IsComplete`, `bool`): Indication if the Todo item is finished. ```csharp private class TodoItem @@ -72,7 +72,7 @@ private class TodoItem JSON helper methods send requests to a URI (a web API in the following examples) and process the response: -* – Sends an HTTP GET request and parses the JSON response body to create an object. +* : Sends an HTTP GET request and parses the JSON response body to create an object. In the following code, the `todoItems` are displayed by the component. The `GetTodoItems` method is triggered when the component is finished rendering ([OnInitializedAsync](xref:blazor/lifecycle#component-initialization-methods)). See the sample app for a complete example. @@ -88,7 +88,7 @@ JSON helper methods send requests to a URI (a web API in the following examples) } ``` -* – Sends an HTTP POST request, including JSON-encoded content, and parses the JSON response body to create an object. +* : Sends an HTTP POST request, including JSON-encoded content, and parses the JSON response body to create an object. In the following code, `newItemName` is provided by a bound element of the component. The `AddItem` method is triggered by selecting a `