aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/actions
diff options
context:
space:
mode:
authorGravatar shreyax <shreyax@google.com>2018-07-09 12:51:51 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-07-09 12:53:25 -0700
commit6b1119fefe17e3b75d47072ad4068ee6fe323624 (patch)
treebd6f582b79bc05880325c9c4e318b121a019a11b /src/main/java/com/google/devtools/build/lib/actions
parente8956648d1c94a3a51e1aba5d229d1f27bdf8e35 (diff)
Fix typo in javadoc for FileValue#realRootedPath.
PiperOrigin-RevId: 203813658
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/actions')
-rw-r--r--src/main/java/com/google/devtools/build/lib/actions/FileValue.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/actions/FileValue.java b/src/main/java/com/google/devtools/build/lib/actions/FileValue.java
index 1fc72c1cae..d862881b2c 100644
--- a/src/main/java/com/google/devtools/build/lib/actions/FileValue.java
+++ b/src/main/java/com/google/devtools/build/lib/actions/FileValue.java
@@ -97,7 +97,7 @@ public abstract class FileValue implements SkyValue {
/**
* Returns the real rooted path of the file, taking ancestor symlinks into account. For example,
- * the rooted path ['root']/['a/b'] is really ['root']/['c/b'] if 'a' is a symlink to 'b'. Note
+ * the rooted path ['root']/['a/b'] is really ['root']/['c/b'] if 'a' is a symlink to 'c'. Note
* that ancestor symlinks outside the root boundary are not taken into consideration.
*/
public abstract RootedPath realRootedPath();