This is an automated email from the ASF dual-hosted git repository. fschumacher pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/jmeter.git
commit db847c10271aecf9b59eb7a8008a78e242618145 Author: Felix Schumacher <[email protected]> AuthorDate: Sat Nov 19 13:44:24 2022 +0100 Change naming the default to inner text The long description in the required field let to a line break in my browser, where the complete text rendered in the title column. We might think about a special default attribute for the arguments, that could be used to specify a default value. Closes #5731 --- xdocs/changes.xml | 2 ++ xdocs/usermanual/functions.xml | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/xdocs/changes.xml b/xdocs/changes.xml index 19b13dceb0..a900cf48e2 100644 --- a/xdocs/changes.xml +++ b/xdocs/changes.xml @@ -105,6 +105,8 @@ Summary <li><pr>5710</pr>Add GitHub Issue templates</li> <li><pr>5713</pr>Update Spock to 2.2-groovy-3.0 (from 2.1-groovy-3.0)</li> <li><issue>5718</issue>Update Apache commons-text to 1.10.0 (from 1.9)</li> + <li><pr>5731</pr>Update docs for <code>changeCase</code> function. <code>UPPER</code> is the default. + Based on a patch by Ori Marko (orimarko at gmail.com)</li> </ul> <!-- =================== Bug fixes =================== --> diff --git a/xdocs/usermanual/functions.xml b/xdocs/usermanual/functions.xml index 12641941c8..23fbe8a3c0 100644 --- a/xdocs/usermanual/functions.xml +++ b/xdocs/usermanual/functions.xml @@ -1701,7 +1701,7 @@ returns: <properties> <property name="String to change case" required="Yes">The String which case will be changed</property> - <property name="change case mode" required="No, default=UPPER"> + <property name="change case mode" required="No"> The mode to be used to change case, for example for <code>ab-CD eF</code>: <ul> <li><code>UPPER</code> result as AB-CD EF</li> @@ -1709,6 +1709,7 @@ returns: <li><code>CAPITALIZE</code> result as Ab-CD eF</li> </ul> <note><code>change case mode</code> is case insensitive</note> + If no mode is given, <code>UPPER</code> is used as default. </property> <property name="Name of variable" required="No">The name of the variable to set.</property> </properties>
