diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 1c6738b8cb..a9d1a3b750 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -1,4 +1,4 @@ - + Functions and Operators @@ -1244,7 +1244,7 @@ - ascii(text) + ascii(string) int ASCII code of the first byte of the argument ascii('x') @@ -1274,8 +1274,7 @@ - convert(string - text, + convert(string text, src_encoding name, dest_encoding name) @@ -1320,7 +1319,7 @@ - initcap(text) + initcap(string) text Convert the first letter of each word to uppercase and the @@ -1332,7 +1331,7 @@ - length(string text) + length(string) int Number of characters in string @@ -1375,7 +1374,7 @@ - md5(string text) + md5(string) text Calculates the MD5 hash of string, @@ -1396,7 +1395,7 @@ - quote_ident(string text) + quote_ident(string) text Return the given string suitably quoted to be used as an identifier @@ -1410,7 +1409,7 @@ - quote_literal(string text) + quote_literal(string) text Return the given string suitably quoted to be used as a string literal @@ -1511,12 +1510,12 @@ - to_ascii(text - , encoding) + to_ascii(string text + , encoding text) text - Convert text to ASCII from another encoding + Convert string to ASCII from another encoding The to_ascii function supports conversion from @@ -1543,8 +1542,7 @@ - translate(string - text, + translate(string text, from text, to text)