Skip to content

Commit fc2bc96

Browse files
committed
Fix title-case headings to sentence case across 19 guide pages
1 parent 0b4f0a6 commit fc2bc96

19 files changed

Lines changed: 28 additions & 28 deletions

content/guides/angular/configure-github-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ In this section, you'll set up a CI/CD pipeline using [GitHub Actions](https://d
3131

3232
To enable GitHub Actions to build and push Docker images, you’ll securely store your Docker Hub credentials in your new GitHub repository.
3333

34-
### Step 1: Generate Docker Hub Credentials and Set GitHub Secrets"
34+
### Step 1: Generate Docker Hub credentials and set GitHub secrets
3535

3636
1. Create a Personal Access Token (PAT) from [Docker Hub](https://hub.docker.com)
3737
1. Go to your **Docker Hub account → Account Settings → Security**.

content/guides/angular/deploy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ If everything is configured properly, you’ll see confirmation that both the De
118118

119119
This confirms that both the Deployment and the Service were successfully created and are now running inside your local cluster.
120120

121-
### Step 2. Check the Deployment status
121+
### Step 2. Check the deployment status
122122

123123
Run the following command to check the status of your deployment:
124124

@@ -135,7 +135,7 @@ You should see output similar to the following:
135135

136136
This confirms that your pod is up and running with one replica available.
137137

138-
### Step 3. Verify the Service exposure
138+
### Step 3. Verify the service exposure
139139

140140
Check if the NodePort service is exposing your app to your local machine:
141141

content/guides/angular/develop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ You’ll learn how to:
2424

2525
---
2626

27-
## Automatically update services (Development Mode)
27+
## Automatically update services (development mode)
2828

2929
Use Compose Watch to automatically sync source file changes into your containerized development environment. This provides a seamless, efficient development experience without restarting or rebuilding containers manually.
3030

content/guides/dex.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The official [Docker image for Dex](https://hub.docker.com/r/dexidp/dex/) provid
2727

2828
[Docker Compose](/compose/): Recommended for managing multi-container Docker applications.
2929

30-
### Setting Up Dex with Docker
30+
### Setting up Dex with Docker
3131

3232
Begin by creating a directory for your Dex project:
3333

content/guides/frameworks/laravel/development-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ CMD ["bash"]
210210
> [!NOTE]
211211
> If you prefer a **one-service-per-container** approach, simply omit the workspace container and run separate containers for each task. For example, you could use a dedicated `php-cli` container for your PHP scripts, and a `node` container to handle the asset building.
212212
213-
## Create a Docker Compose Configuration for development
213+
## Create a Docker Compose configuration for development
214214

215215
Here's the `compose.yaml` file to set up the development environment:
216216

content/guides/nextjs/deploy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ If everything is configured properly, you'll see confirmation that both the Depl
116116

117117
This output means that both the Deployment and the Service were successfully created and are now running inside your local cluster.
118118

119-
### Step 2. Check the Deployment status
119+
### Step 2. Check the deployment status
120120

121121
Run the following command to check the status of your deployment:
122122

@@ -133,7 +133,7 @@ You should see an output similar to:
133133

134134
This confirms that your pod is up and running with one replica available.
135135

136-
### Step 3. Verify the Service exposure
136+
### Step 3. Verify the service exposure
137137

138138
Check if the NodePort service is exposing your app to your local machine:
139139

content/guides/nextjs/develop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ You'll learn how to:
2424

2525
---
2626

27-
## Automatically update services (Development Mode)
27+
## Automatically update services (development mode)
2828

2929
Use Compose Watch to automatically sync source file changes into your
3030
containerized development environment. This automatically syncs file changes

content/guides/nodejs/develop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ $ npm run db:start # Start PostgreSQL container
354354
$ npm run dev # Start both server and client
355355
```
356356

357-
### Using Task Runner (alternative)
357+
### Using Task runner (alternative)
358358

359359
The project includes a Taskfile.yml for advanced workflows:
360360

content/guides/opentelemetry.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The [Docker Official Image for OpenTelemetry](https://hub.docker.com/r/otel/open
3333

3434
Basic knowledge of Node.js and Docker.
3535

36-
## Project Structure
36+
## Project structure
3737

3838
Create the project directory:
3939
```bash
@@ -51,7 +51,7 @@ otel-js-app/
5151
│ └── tracer.js
5252
```
5353

54-
## Create a Simple Node.js App
54+
## Create a simple Node.js app
5555

5656
Initialize a basic Node.js app:
5757

@@ -82,7 +82,7 @@ app.listen(PORT, () => {
8282
});
8383
```
8484

85-
## Configure OpenTelemetry Tracing
85+
## Configure OpenTelemetry tracing
8686

8787
Create the tracer configuration file:
8888

@@ -128,7 +128,7 @@ service:
128128
exporters: [logging, jaeger]
129129
```
130130
131-
## Add Docker Compose Configuration
131+
## Add Docker Compose configuration
132132
133133
Create the `docker-compose.yaml` file:
134134

@@ -173,7 +173,7 @@ RUN npm install
173173
CMD ["node", "app.js"]
174174
```
175175

176-
## Start the Stack
176+
## Start the stack
177177

178178
Start all services with Docker Compose:
179179

@@ -187,7 +187,7 @@ Visit your app at [http://localhost:3000](http://localhost:3000)
187187

188188
View traces at [http://localhost:16686](http://localhost:16686) in the Jaeger UI
189189

190-
## Verify Traces in Jaeger
190+
## Verify traces in Jaeger
191191

192192
After visiting your app's root endpoint, open Jaeger’s UI, search for the service (default is usually `unknown_service` unless explicitly named), and check the traces.
193193

content/guides/postgresql/companions-for-postgresql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ weight: 40
1010
---
1111

1212

13-
## PostgreSQL Ecosystem companions: pgAdmin, PgBouncer, and Performance Testing
13+
## PostgreSQL ecosystem companions: pgAdmin, PgBouncer, and performance testing
1414

1515
Running a standalone PostgreSQL container is often just the beginning. What happens when thousands of connections arrive, or when you need a visual interface to manage your database?
1616

0 commit comments

Comments
 (0)