diff --git a/backend/src/main/java/com/example/todoapp/controller/RecipesController.java b/backend/src/main/java/com/example/todoapp/controller/RecipesController.java
index 45702a3..b2f97ab 100644
--- a/backend/src/main/java/com/example/todoapp/controller/RecipesController.java
+++ b/backend/src/main/java/com/example/todoapp/controller/RecipesController.java
@@ -22,7 +22,13 @@ import com.example.todoapp.service.RecipeService;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
-
+/**
+ * 料理レシピ管理のコントローラー
+ *
+ * このコントローラーはレシピの取得、作成、更新、削除などの
+ * エンドポイントを提供します。すべてのエンドポイントは認証が必要です。
+ *
+ */
@RestController
@RequestMapping("/recipes")
public class RecipesController {
@@ -30,6 +36,12 @@ public class RecipesController {
@Autowired
private RecipeService recipeService;
+ /**
+ * 新しいレシピを作成する
+ *
+ * @param dto 作成するレシピの情報
+ * @return 作成結果(recipeIdとメッセージを含む)
+ */
@PostMapping("/add")
public ResponseEntity