From 1127316e2326fb5fc3145f1a259c674397bf0d8a Mon Sep 17 00:00:00 2001 From: lberki Date: Wed, 11 May 2022 01:46:20 -0700 Subject: [PATCH] Make the documentation of --experimental_allow_uinresolved_symlinks correspond to reality. RELNOTES: None. PiperOrigin-RevId: 447934031 --- .../devtools/build/lib/analysis/config/CoreOptions.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/google/devtools/build/lib/analysis/config/CoreOptions.java b/src/main/java/com/google/devtools/build/lib/analysis/config/CoreOptions.java index 888e5dfdb17f68..286657b630560d 100644 --- a/src/main/java/com/google/devtools/build/lib/analysis/config/CoreOptions.java +++ b/src/main/java/com/google/devtools/build/lib/analysis/config/CoreOptions.java @@ -645,8 +645,9 @@ public OutputDirectoryNamingSchemeConverter() { OptionEffectTag.LOADING_AND_ANALYSIS, }, help = - "If enabled, Bazel allows the use of ctx.action.{declare_symlink,symlink}, thus " - + "allowing the user to create symlinks (resolved and unresolved)") + "If enabled, Bazel allows the use of ctx.action.declare_symlink() and the use of " + + "ctx.actions.symlink() without a target file, thus allowing the creation of " + + "unresolved symlinks") public boolean allowUnresolvedSymlinks; /** Values for --experimental_output_paths. */