Skip to content

Commit fc80b60

Browse files
committedOct 17, 2011
Correct help for upper function
1 parent 047c57c commit fc80b60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/qgsexpression.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ FnDef QgsExpression::BuiltinFunctions[] =
364364
"<br> <i>Usage:</i><br>lower('HELLO WORLD') will return 'hello world'"),
365365
FnDef( "upper", 1, fcnUpper, "String" , "<b>Convert to upper case</b> "\
366366
"<br> Converts a string to upper case letters. " \
367-
"<br> <i>Usage:</i><br>lower('hello world') will return 'HELLO WORLD'"),
367+
"<br> <i>Usage:</i><br>upper('hello world') will return 'HELLO WORLD'"),
368368
FnDef( "length", 1, fcnLength, "String", "<b>Length of string</b> "\
369369
"<br> Returns the legnth of a string. " \
370370
"<br> <i>Usage:</i><br>length('hello') will return 5"),

0 commit comments

Comments
 (0)
Please sign in to comment.