Fix gn typo

There is a missing space in one of the gn error messages. It currently
says:

  This overwrites a previously-defined nonempty listwith another nonempty list.

With this change it says:

  This overwrites a previously-defined nonempty list with another nonempty list.

Now gn is perfect.

R=brettw@chromium.org

Review-Url: https://codereview.chromium.org/2954773003
Cr-Original-Commit-Position: refs/heads/master@{#482203}
Cr-Mirrored-From: https://chromium.googlesource.com/chromium/src
Cr-Mirrored-Commit: ce88977522c4fe591533766756a41c83d9225d32
diff --git a/tools/gn/operators.cc b/tools/gn/operators.cc
index 350fef4..8bef028 100644
--- a/tools/gn/operators.cc
+++ b/tools/gn/operators.cc
@@ -228,7 +228,7 @@
   Err result(op_node->left()->GetRange(),
       "Replacing nonempty " + type_name + ".",
       "This overwrites a previously-defined nonempty " + type_name +
-      "with another nonempty " + type_name + ".");
+      " with another nonempty " + type_name + ".");
   result.AppendSubErr(Err(old_value, "for previous definition",
       "Did you mean to append/modify instead? If you really want to overwrite, "
       "do:\n"