From 79cabf68d486723e0e32f40ea5d9d251b736af49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Will=20=E4=BF=9D=E5=93=A5?= <88981+doggy8088@users.noreply.github.com> Date: Fri, 11 Jul 2025 07:18:27 +0800 Subject: [PATCH] fix typo in prompts/create-spring-boot-kotlin-project.prompt.md file (#73) --- prompts/create-spring-boot-kotlin-project.prompt.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/prompts/create-spring-boot-kotlin-project.prompt.md b/prompts/create-spring-boot-kotlin-project.prompt.md index 74d16ec..e8f3084 100644 --- a/prompts/create-spring-boot-kotlin-project.prompt.md +++ b/prompts/create-spring-boot-kotlin-project.prompt.md @@ -132,9 +132,9 @@ spring.data.mongodb.database=test - Run gradle clean test command to check if the project is working ```shell -./graldew clean test +./gradlew clean test ``` -- (Optional) `docker-compose up -d` to start the services, `./graldew spring-boot:run` to run the Spring Boot project, `docker-compose rm -sf` to stop the services. +- (Optional) `docker-compose up -d` to start the services, `./gradlew spring-boot:run` to run the Spring Boot project, `docker-compose rm -sf` to stop the services. Let's do this step by step.