Fix tiny format issue I noticed while looking at https://github.com/bazelbuild/bazel/issues/11428
Just some missing whitespace after periods.
RELNOTES:
PiperOrigin-RevId: 312256129
diff --git a/src/main/java/com/google/devtools/build/lib/exec/ExecutionOptions.java b/src/main/java/com/google/devtools/build/lib/exec/ExecutionOptions.java
index 5d98641..8b589bf 100644
--- a/src/main/java/com/google/devtools/build/lib/exec/ExecutionOptions.java
+++ b/src/main/java/com/google/devtools/build/lib/exec/ExecutionOptions.java
@@ -69,7 +69,7 @@
"Specify how spawn actions are executed by default. Accepts a comma-separated list of"
+ " strategies from highest to lowest priority. For each action Bazel picks the"
+ " strategy with the highest priority that can execute the action. The default"
- + " value is \"remote,worker,sandboxed,local\".See"
+ + " value is \"remote,worker,sandboxed,local\". See"
+ " https://blog.bazel.build/2019/06/19/list-strategy.html for details.")
public List<String> spawnStrategy;
@@ -96,7 +96,7 @@
"Specify how to distribute compilation of other spawn actions. Accepts a comma-separated"
+ " list of strategies from highest to lowest priority. For each action Bazel picks"
+ " the strategy with the highest priority that can execute the action. The default"
- + " value is \"remote,worker,sandboxed,local\".See"
+ + " value is \"remote,worker,sandboxed,local\". See"
+ " https://blog.bazel.build/2019/06/19/list-strategy.html for details.")
public List<Map.Entry<String, List<String>>> strategy;