Skip to content

Commit 5cf6211

Browse files
authored
Merge pull request #61 from Move-Log/develop
Merge develop to main
2 parents 71d317b + 4a61e7b commit 5cf6211

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/movelog/domain/news/presentation/NewsController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public ResponseEntity<?> getRecentKeywords(
103103
public ResponseEntity<?> getRecentNews(
104104
@Parameter(description = "Access Token을 입력해주세요.", required = true)
105105
@AuthenticationPrincipal UserPrincipal userPrincipal,
106-
@Parameter(description = "뉴스 목록의 페이지 번호를 입력해주세요. **Page는 1부터 시작됩니다!**", required = true)
106+
@Parameter(description = "뉴스 목록의 페이지 번호를 입력해주세요. **Page는 0부터 시작됩니다!**", required = true)
107107
@RequestParam(value = "page", required = false, defaultValue = "0") Integer page
108108
) {
109109
List<RecentNewsRes> response = newsService.getRecentNews(userPrincipal, page);

0 commit comments

Comments
 (0)