Skip to content

Commit

Permalink
Added dot at the end of the sentence.
Browse files Browse the repository at this point in the history
  • Loading branch information
bvanderdrift committed May 5, 2016
1 parent 3af4204 commit cc2e111
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public TeamRestController(TeamService teamService) {
@RequestMapping(method = RequestMethod.POST)
ResponseEntity<?> add(@Validated @RequestBody TeamDTO teamDTO, Authentication auth) {
if(teamService.teamnameUsed(teamDTO.getTeamName())){
return createResponseEntity(HttpStatus.CONFLICT, "Team with name \"" + teamDTO.getTeamName() + "\" already exists");
return createResponseEntity(HttpStatus.CONFLICT, "Team with name \"" + teamDTO.getTeamName() + "\" already exists.");
}

Team team;
Expand Down

0 comments on commit cc2e111

Please sign in to comment.