diff --git a/src/main/kotlin/com/info/maeumgagym/presentation/controller/user/UserController.kt b/src/main/kotlin/com/info/maeumgagym/presentation/controller/user/UserController.kt index 4cda7cf2..79a48c8c 100644 --- a/src/main/kotlin/com/info/maeumgagym/presentation/controller/user/UserController.kt +++ b/src/main/kotlin/com/info/maeumgagym/presentation/controller/user/UserController.kt @@ -34,7 +34,7 @@ private class UserController( nickname: String? ): UserProfileResponse = readUserProfileFromNicknameUseCase.profileFromNickname(nickname!!) - @Operation(summary = "현재 로그인한 유저 프로필 보기 API") + @Operation(summary = "현재 로그인한 유저 프로필 조회 API") @RequireAuthentication @GetMapping fun getCurrentUserProfile(): UserProfileResponse = readCurrentUserProfileUseCase.readCurrentUserProfile()