Fix missing whitespace in two error messages Change-Id: Ib8fcab8108c37f384525da594182fc6aeb09cac6 Reviewed-on: https://gn-review.googlesource.com/c/gn/+/11960 Reviewed-by: Brett Wilson <brettw@chromium.org> Commit-Queue: Brett Wilson <brettw@chromium.org>
diff --git a/src/gn/config_values_generator.cc b/src/gn/config_values_generator.cc index fac03d7..d8b481f 100644 --- a/src/gn/config_values_generator.cc +++ b/src/gn/config_values_generator.cc
@@ -62,7 +62,7 @@ std::string_view framework_name = GetFrameworkName(framework); if (framework_name.empty()) { *err = Err(*value, - "This frameworks value is wrong." + "This frameworks value is wrong. " "All listed frameworks names must not include any\n" "path component and have \".framework\" extension."); return; @@ -150,7 +150,7 @@ const std::string& pch_string = precompiled_header_value->string_value(); if (base::StartsWith(pch_string, "//", base::CompareCase::SENSITIVE)) { *err_ = Err( - *precompiled_header_value, "This precompiled_header value is wrong.", + *precompiled_header_value, "This precompiled_header value is wrong. ", "You need to specify a string that the compiler will match against\n" "the #include lines rather than a GN-style file name.\n"); return;