From 2f0e879c861ded5f137df5f4a413f8ccc30121e2 Mon Sep 17 00:00:00 2001 From: AJ Matthews Date: Tue, 7 Apr 2026 16:54:35 +0100 Subject: [PATCH 1/3] Ensured that 'front end' (noun) and 'front-end' (adjective) are used consistently as described in Microsoft style guide. --- .../app-host/certificate-configuration.mdx | 2 +- .../content/docs/app-host/configuration.mdx | 2 +- .../content/docs/app-host/container-files.mdx | 14 +- .../docs/app-host/executable-resources.mdx | 4 +- .../app-host/migrate-from-docker-compose.mdx | 4 +- .../architecture/resource-hierarchies.mdx | 4 +- .../docs/architecture/resource-model.mdx | 2 +- .../content/docs/dashboard/configuration.mdx | 8 +- .../src/content/docs/dashboard/index.mdx | 2 +- .../src/content/docs/dashboard/overview.mdx | 4 +- .../dashboard/security-considerations.mdx | 6 +- .../docs/dashboard/standalone-for-python.mdx | 2 +- .../docs/deployment/javascript-apps.mdx | 122 +++++++++--------- .../src/content/docs/deployment/overview.mdx | 2 +- .../src/content/docs/deployment/pipelines.mdx | 10 +- .../docs/fundamentals/networking-overview.mdx | 8 +- .../docs/fundamentals/service-discovery.mdx | 4 +- ...add-aspire-existing-app-csharp-apphost.mdx | 4 +- ...aspire-existing-app-typescript-apphost.mdx | 6 +- .../src/content/docs/get-started/app-host.mdx | 24 ++-- .../docs/get-started/aspire-sdk-templates.mdx | 8 +- .../get-started/deploy-first-app-csharp.mdx | 2 +- .../get-started/first-app-csharp-apphost.mdx | 16 +-- .../first-app-typescript-apphost.mdx | 12 +- .../src/content/docs/get-started/glossary.mdx | 2 +- .../docs/get-started/troubleshooting.mdx | 2 +- .../content/docs/integrations/devtools/k6.mdx | 2 +- .../integrations/dotnet/project-resources.mdx | 6 +- .../integrations/frameworks/javascript.mdx | 26 ++-- .../integrations/reverse-proxies/yarp.mdx | 2 +- .../content/docs/whats-new/aspire-13-1.mdx | 10 +- .../src/content/docs/whats-new/aspire-13.mdx | 14 +- .../src/content/docs/whats-new/aspire-9-3.mdx | 6 +- .../src/content/docs/whats-new/aspire-9-5.mdx | 4 +- src/frontend/src/content/i18n/en.json | 2 +- 35 files changed, 174 insertions(+), 174 deletions(-) diff --git a/src/frontend/src/content/docs/app-host/certificate-configuration.mdx b/src/frontend/src/content/docs/app-host/certificate-configuration.mdx index 4488c8e01..c7c2fc9fb 100644 --- a/src/frontend/src/content/docs/app-host/certificate-configuration.mdx +++ b/src/frontend/src/content/docs/app-host/certificate-configuration.mdx @@ -10,7 +10,7 @@ Aspire provides two complementary sets of certificate APIs: 1. **HTTPS endpoint APIs**: Configure the certificates that resources use for their own HTTPS endpoints (server authentication) 2. **Certificate trust APIs**: Configure which certificates resources trust when making outbound HTTPS connections (client authentication) -Both sets of APIs work together to enable secure HTTPS communication during local development. For example, a Vite frontend might use `WithHttpsDeveloperCertificate` to serve HTTPS traffic, while also using `WithDeveloperCertificateTrust` to trust the dashboard's OTLP endpoint certificate. +Both sets of APIs work together to enable secure HTTPS communication during local development. For example, a Vite front end might use `WithHttpsDeveloperCertificate` to serve HTTPS traffic, while also using `WithDeveloperCertificateTrust` to trust the dashboard's OTLP endpoint certificate.