Skip to content

Commit

Permalink
[refactor] 가독성을 위한 띄어쓰기 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
hysong4u committed Feb 6, 2024
1 parent 4a28410 commit 78ed081
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ public String sendDiscordNotification(String nickname) {
RestTemplate restTemplate = new RestTemplate();
Long totalMembers = memberRepository.count();

String message = totalMembers + "번째 멤버가 회원가입했습니다.\n" +
String message = "\n" + totalMembers + "번째 멤버가 회원가입했습니다.\n" +
"사용자명: " + nickname;

HttpHeaders headers = new HttpHeaders();
Expand Down

0 comments on commit 78ed081

Please sign in to comment.