Skip to content

Commit

Permalink
Fix typos in MapDescriptionReader.java. (#11796)
Browse files Browse the repository at this point in the history
  • Loading branch information
asvitkine committed Jul 19, 2023
1 parent 8ad468d commit 90769cb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ public String apply(final MapRepoListing mapRepoListing) {
final String description = downloadDescription(mapRepoListing).orElse(null);
if (description == null) {
return String.format(
"No description available for: %s"
"No description available for: %s. "
+ "Contact the map author and request they add a 'description.html' file",
mapRepoListing.getUri());
} else if (description.length() > DESCRIPTION_COLUMN_DATABASE_MAX_LENGTH) {
return String.format(
"The description for this map is too long at %s characters. Max length is %s."
"The description for this map is too long at %s characters. Max length is %s. "
+ "Contact the map author for: %s"
+ ", and request they reduce the length of the file 'description.html'",
description.length(), DESCRIPTION_COLUMN_DATABASE_MAX_LENGTH, mapRepoListing.getUri());
Expand Down

0 comments on commit 90769cb

Please sign in to comment.