Skip to content

Commit ddf1d31

Browse files
committed
unknown
1 parent 9ef56b2 commit ddf1d31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/back/domain/study/todo/service/TodoService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ private User findUserById(Long userId) {
9292
.orElseThrow(() -> new CustomException(ErrorCode.USER_NOT_FOUND));
9393
}
9494

95-
// 할 일 조회 및 소유권 확인
95+
// 할 일 조회 및 사용자 소유 검증
9696
private Todo findTodoByIdAndUser(Long todoId, User user) {
9797
Todo todo = todoRepository.findById(todoId)
9898
.orElseThrow(() -> new CustomException(ErrorCode.TODO_NOT_FOUND));

0 commit comments

Comments
 (0)