Skip to content

Commit

Permalink
hotfix: 닉네임 생성시 공백(스페이스) 포함하도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
shinyubin989 committed Mar 17, 2024
1 parent 75e5027 commit 9418bb8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ class RandomNicknameCreator implements NicknameCreator {

@Override
public String create() {
return MemberNameAdjectives.pickRandom() + MemberNameNouns.pickRandom();
return MemberNameAdjectives.pickRandom() + " " + MemberNameNouns.pickRandom();
}
}

0 comments on commit 9418bb8

Please sign in to comment.