Skip to content

Commit b7bb142

Browse files
schwehrGoogle Earth Engine Authors
authored andcommitted
batch.js: Add missing space in the image format options error message.
PiperOrigin-RevId: 743190785
1 parent dab7a3d commit b7bb142

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javascript/src/batch.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1048,7 +1048,7 @@ Export.prefixImageFormatOptions_ = function(taskConfig, imageFormat) {
10481048
if (!(googArray.contains(validOptionKeys, key))) {
10491049
const validKeysMsg = validOptionKeys.join(', ');
10501050
throw new Error(
1051-
`"${key}" is not a valid option, the image format "${imageFormat}"` +
1051+
`"${key}" is not a valid option, the image format "${imageFormat}" ` +
10521052
`"may have the following options: ${validKeysMsg}".`);
10531053
}
10541054
const prefixedKey = prefix + key[0].toUpperCase() + key.substring(1);

0 commit comments

Comments
 (0)