Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

Commit

Permalink
[bugfix] 컴파일 에러를 수정한다.
Browse files Browse the repository at this point in the history
motivation:
- 제네릭 타입을 생성하면서 발생한 컴파일 에러 수정

modification:
- ReviewController.java 수정

Close #103
  • Loading branch information
Nine-JH committed Jan 15, 2024
1 parent e160f5a commit 1f7fee1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public ApiResponse<ReviewCreateResponse> createReview(@Valid @RequestBody Review
}

@PatchMapping
public ApiResponse<ReviewCreateResponse> editReview(@Valid @RequestBody ReviewEditRequest reviewEditRequest) {
public ApiResponse<ReviewEditResponse> editReview(@Valid @RequestBody ReviewEditRequest reviewEditRequest) {
return ApiResponse.ok(reviewService.editReview(reviewEditRequest));
}

Expand Down

0 comments on commit 1f7fee1

Please sign in to comment.