Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos in MapDescriptionReader.java. #11796

Merged
merged 1 commit into from
Jul 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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