Skip to content

Commit

Permalink
Correct help for upper function
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanW2 committed Oct 17, 2011
1 parent 047c57c commit fc80b60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsexpression.cpp
Expand Up @@ -364,7 +364,7 @@ FnDef QgsExpression::BuiltinFunctions[] =
"<br> <i>Usage:</i><br>lower('HELLO WORLD') will return 'hello world'"),
FnDef( "upper", 1, fcnUpper, "String" , "<b>Convert to upper case</b> "\
"<br> Converts a string to upper case letters. " \
"<br> <i>Usage:</i><br>lower('hello world') will return 'HELLO WORLD'"),
"<br> <i>Usage:</i><br>upper('hello world') will return 'HELLO WORLD'"),
FnDef( "length", 1, fcnLength, "String", "<b>Length of string</b> "\
"<br> Returns the legnth of a string. " \
"<br> <i>Usage:</i><br>length('hello') will return 5"),
Expand Down

0 comments on commit fc80b60

Please sign in to comment.