Fix spacing in message (missing a space between words from line split)

pull/8997/head
Thomas Van Lenten 4 years ago
parent 5a81e07d44
commit 9ab14a81e1
  1. 6
      src/google/protobuf/compiler/objectivec/objectivec_helpers.cc

@ -1359,9 +1359,9 @@ bool ValidateObjCClassPrefix(
if (prefixes_must_be_registered) {
*out_error =
"error: '" + file->name() + "' has 'option objc_class_prefix = \"" +
prefix + "\";', but it is not registered; add it to the expected" +
" prefixes file (" + expected_prefixes_path + ") for the package" +
"'" + package + "'.";
prefix + "\";', but it is not registered; add it to the expected " +
"prefixes file (" + expected_prefixes_path + ") for the package '" +
package + "'.";
return false;
}

Loading…
Cancel
Save