Skip to content

Commit 22e7d3e

Browse files
authored
Merge pull request #132 from dotkernel/menu-fix
change title in menu and command qol fix
2 parents 8314357 + ed5e2cc commit 22e7d3e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/book/v6/tutorials/create-book-module-via-dot-maker.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Implementing a book module in Dotkernel API using dotkernel/dot-maker
1+
# Implementing a book module in Dotkernel API using DotMaker
22

33
The `dotkernel/dot-maker` library can be used to programmatically generate project files and directories.
44
It can be added to your API installation by following the [official documentation](https://docs.dotkernel.org/dot-maker/).
@@ -414,8 +414,8 @@ composer serve
414414
If we did everything as planned, we should be able to create a new book by executing the below command:
415415

416416
```shell
417-
curl -X POST http://0.0.0.0:8080/book
418-
-H "Content-Type: application/json"
417+
curl -X POST http://0.0.0.0:8080/book \
418+
-H "Content-Type: application/json" \
419419
-d '{"name": "test", "author": "author name", "releaseDate": "2025-08-21"}'
420420
```
421421

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ nav:
5252
- Tutorials:
5353
- "Setting up CORS": v6/tutorials/cors.md
5454
- "Creating a book module": v6/tutorials/create-book-module.md
55-
- "Creating a book module using dotkernel/dot-maker": v6/tutorials/create-book-module-via-dot-maker.md
55+
- "Creating a book module using DotMaker": v6/tutorials/create-book-module-via-dot-maker.md
5656
- "Token authentication": v6/tutorials/token-authentication.md
5757
- "API Evolution": v6/tutorials/api-evolution.md
5858
- "Find user by identity": v6/tutorials/find-user-by-identity.md

0 commit comments

Comments
 (0)