aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google
diff options
context:
space:
mode:
authorGravatar Mark Schaller <mschaller@google.com>2015-09-14 14:36:37 +0000
committerGravatar Kristina Chodorow <kchodorow@google.com>2015-09-14 15:41:13 +0000
commit86eeb8cce39cecd1ae69132c5f69d345d7f2f1de (patch)
tree90831e2f0c4872e69210ea3c11c5d706a408756b /src/main/java/com/google
parent159ee3fd7c7243990f525b37467298a36f8ee462 (diff)
Fix typos in "Packages" description and MethodLibrary doc
-- MOS_MIGRATED_REVID=102991839
Diffstat (limited to 'src/main/java/com/google')
-rw-r--r--src/main/java/com/google/devtools/build/lib/syntax/MethodLibrary.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/syntax/MethodLibrary.java b/src/main/java/com/google/devtools/build/lib/syntax/MethodLibrary.java
index 04adc5eeb6..18ed1c728c 100644
--- a/src/main/java/com/google/devtools/build/lib/syntax/MethodLibrary.java
+++ b/src/main/java/com/google/devtools/build/lib/syntax/MethodLibrary.java
@@ -390,7 +390,7 @@ public class MethodLibrary {
objectType = StringModule.class,
returnType = String.class,
doc =
- "Returns a copy of the string with its first character capitalized and the rest"
+ "Returns a copy of the string with its first character capitalized and the rest "
+ "lowercased. This method does not support non-ascii characters.",
mandatoryPositionals = {@Param(name = "self", type = String.class, doc = "This string.")}
)