Skip to content

Commit

Permalink
🐛 fix(api): korean grammar correction
Browse files Browse the repository at this point in the history
  • Loading branch information
siyeonSon committed Dec 29, 2024
1 parent e5e38a7 commit 7cd4aca
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public ResponseEntity<UserPoiResponseDto> getUserDropItemsPoints(
}

@Operation(summary = "사용자가 드랍한 아이템 지역 별 개수 조회")
@ApiResponse(responseCode = "200", description = "사용자가 드랍한 아이템 지역 별 개수 조회 성공")
@ApiResponse(responseCode = "200", description = "사용자가 드랍한 아이템 지역별 개수 조회 성공")
@GetMapping("/drop/count/all-locations")
public ResponseEntity<UserItemCountGroupByLocationDto> countUserItemsGroupByStates(
@ReqUser User user
Expand Down Expand Up @@ -98,7 +98,7 @@ public ResponseEntity<UserPoiResponseDto> getUserLikedItemsPoints(
}

@Operation(summary = "사용자가 찜한 아이템 지역 별 개수 조회")
@ApiResponse(responseCode = "200", description = "사용자가 찜한 아이템 지역 별 개수 조회 성공")
@ApiResponse(responseCode = "200", description = "사용자가 찜한 아이템 지역별 개수 조회 성공")
@GetMapping("/like/count/all-locations")
public ResponseEntity<UserItemCountGroupByLocationDto> countLikedItemsGroupByStates(
@ReqUser User user
Expand Down

0 comments on commit 7cd4aca

Please sign in to comment.