Skip to content

Commit ec70bf1

Browse files
committed
docs: simplify page titles and clean up front-matter for readability
- Shortened all Jekyll `title` fields (removed “Updated”, “Maven Plugins & Dependencies”, etc.) - Ensured consistent front-matter separators (`---`) across all Markdown files - Improved navigation clarity in GitHub Pages sidebar - Verified that all adoption guides and index pages render cleanly with concise titles
1 parent db75a75 commit ec70bf1

File tree

4 files changed

+9
-13
lines changed

4 files changed

+9
-13
lines changed

README.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -199,24 +199,22 @@ The unified envelope applies to both single and paged responses. Below is a page
199199
}
200200
```
201201

202-
Client usage:
202+
### Client Usage
203203

204204
```java
205205
ServiceClientResponse<Page<CustomerDto>> resp =
206206
customerClientAdapter.getCustomers(
207207
"Jane", null, 0, 5, SortField.CUSTOMER_ID, SortDirection.ASC);
208208
209209
Page<CustomerDto> page = resp.getData();
210-
for(
211-
CustomerDto c :page.
212-
213-
content()){
214-
// ...
215-
}
210+
for (CustomerDto c : page.content()) {
211+
// ...
212+
}
216213
```
217214

218215
---
219216

217+
220218
## 🧩 Tech Stack
221219

222220
| Component | Version | Purpose |

docs/adoption/client-side-adoption-pom.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: default
3-
title: Client-Side Build Setup (Maven Plugins & Dependencies)
3+
title: Client-Side Build Setup
44
parent: Client-Side Adoption
55
nav_order: 1
66
---

docs/adoption/client-side-adoption.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: default
3-
title: Client-Side Adoption (Updated for data+meta & ProblemDetail)
3+
title: Client-Side Adoption
44
parent: Adoption Guides
55
nav_order: 2
66
---

docs/adoption/server-side-adoption.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: default
3-
title: Server-Side Adoption (Simplified)
3+
title: Server-Side Adoption
44
parent: Adoption Guides
55
nav_order: 1
66
---
@@ -23,9 +23,7 @@ Your service will:
2323

2424
```json
2525
{
26-
"data": {
27-
/* T */
28-
},
26+
"data": "<T>",
2927
"meta": {
3028
"serverTime": "2025-01-01T12:34:56Z",
3129
"sort": []

0 commit comments

Comments
 (0)