Skip to content

Commit b39e9b7

Browse files
authored
Update glossary.mdx missing spaces after some bold words (#622)
1 parent 7314f54 commit b39e9b7

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/frontend/src/content/docs/get-started/glossary.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Resources are the building blocks you compose in your AppHost.
5050

5151
### Distributed application
5252

53-
A **distributed application**is an application split into multiple independent services that communicate over a network. Instead of one monolithic application, you have:
53+
A **distributed application** is an application split into multiple independent services that communicate over a network. Instead of one monolithic application, you have:
5454

5555
- A frontend service
5656
- One or more API services
@@ -63,7 +63,7 @@ Aspire helps you orchestrate all these pieces together.
6363

6464
### Service defaults
6565

66-
**Service defaults**are pre-configured settings that Aspire applies to your .NET projects automatically. They include:
66+
**Service defaults** are pre-configured settings that Aspire applies to your .NET projects automatically. They include:
6767

6868
- **OpenTelemetry** - Automatic logging, tracing, and metrics
6969
- **Health checks** - Endpoints for monitoring (`/health`, `/alive`)
@@ -153,7 +153,7 @@ Example: `Host=localhost;Port=5432;Database=mydb;Username=postgres;Password=secr
153153

154154
### Service discovery
155155

156-
**Service discovery**is the mechanism that allows your services to find and communicate with each other by name, without hardcoding addresses. In Aspire:
156+
**Service discovery** is the mechanism that allows your services to find and communicate with each other by name, without hardcoding addresses. In Aspire:
157157

158158
- Resources are addressable by their resource name (e.g., `http://apiservice`)
159159
- The AppHost configures DNS/environment variables so services can resolve each other
@@ -163,7 +163,7 @@ For details, see [Service Discovery](/fundamentals/service-discovery/).
163163

164164
### Health check
165165

166-
A **health check**is a mechanism to determine if a resource is ready and functioning. Aspire uses health checks in two ways:
166+
A **health check** is a mechanism to determine if a resource is ready and functioning. Aspire uses health checks in two ways:
167167

168168
1. **AppHost level**: Determines when dependencies are ready (controls `WaitFor()` behavior)
169169
2. **Application level**: Exposes `/health` and `/alive` endpoints for load balancers
@@ -172,7 +172,7 @@ For details, see [Health Checks](/fundamentals/health-checks/).
172172

173173
### Environment variable
174174

175-
Aspire uses **environment variables**to pass configuration from the AppHost to your services:
175+
Aspire uses **environment variables** to pass configuration from the AppHost to your services:
176176

177177
- Connection strings: `ConnectionStrings__resourcename`
178178
- Service endpoints: `services__servicename__https__0`
@@ -198,7 +198,7 @@ Example: `Aspire.Hosting.PostgreSQL` adds the `AddPostgres()` method.
198198

199199
### Client integration
200200

201-
A **client integration**is an Aspire package that helps your application code connect to resources. Client integrations:
201+
A **client integration** is an Aspire package that helps your application code connect to resources. Client integrations:
202202

203203
- Register SDK clients with dependency injection
204204
- Configure connection strings from environment variables
@@ -242,7 +242,7 @@ Aspire operates in two distinct modes depending on what you're trying to accompl
242242

243243
### Publish mode
244244

245-
**Publish mode**generates deployment artifacts. When you execute `aspire publish`:
245+
**Publish mode** generates deployment artifacts. When you execute `aspire publish`:
246246

247247
- Aspire generates Kubernetes manifests, Docker Compose files, or cloud infrastructure
248248
- No containers are started locally

0 commit comments

Comments
 (0)