From d4cb381ce06d898cece550df9158e91939a01c9e Mon Sep 17 00:00:00 2001 From: Pawel Kowal Date: Wed, 6 Jul 2016 10:33:27 +0200 Subject: [PATCH] Update String.capitalize() documentation (cherry picked from commit fe49b7180420eb8dafe4ced86de7168a34c292b9) --- doc/base/classes.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/base/classes.xml b/doc/base/classes.xml index aef1ac6f527..d77908366a9 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -35196,7 +35196,7 @@ A similar effect may be achieved moving this node's descendants. - Return the string in uppercase. + Change the case of some letters. Replace underscores with spaces, convert all letters to lowercase then capitalize first and every letter following the space character. For [code]capitalize camelCase mixed_with_underscores[/code] it will return [code]Capitalize Camelcase Mixed With Underscores[/code].