Remove extra word from option documentation.

The sentence makes more sense without "otherwise" in it.

Closes #5796.

PiperOrigin-RevId: 211944880
diff --git a/src/main/java/com/google/devtools/build/lib/remote/RemoteOptions.java b/src/main/java/com/google/devtools/build/lib/remote/RemoteOptions.java
index b73784f..7656c77 100644
--- a/src/main/java/com/google/devtools/build/lib/remote/RemoteOptions.java
+++ b/src/main/java/com/google/devtools/build/lib/remote/RemoteOptions.java
@@ -235,17 +235,16 @@
   public String experimentalRemoteGrpcLog;
 
   @Option(
-    name = "remote_allow_symlink_upload",
-    defaultValue = "true",
-    category = "remote",
-    documentationCategory = OptionDocumentationCategory.EXECUTION_STRATEGY,
-    effectTags = {OptionEffectTag.EXECUTION},
-    help =
-        "If true, upload action symlink outputs to the remote cache. "
-            + "The remote cache currently doesn't support symlinks, "
-            + "so symlink outputs are converted into regular files. "
-            + "If this option is not enabled, "
-            + "otherwise cachable actions that output symlinks will fail."
-  )
+      name = "remote_allow_symlink_upload",
+      defaultValue = "true",
+      category = "remote",
+      documentationCategory = OptionDocumentationCategory.EXECUTION_STRATEGY,
+      effectTags = {OptionEffectTag.EXECUTION},
+      help =
+          "If true, upload action symlink outputs to the remote cache. "
+              + "The remote cache currently doesn't support symlinks, "
+              + "so symlink outputs are converted into regular files. "
+              + "If this option is not enabled, "
+              + "cachable actions that output symlinks will fail.")
   public boolean allowSymlinkUpload;
 }