Make function param_name/type documentation more consistent.
authorBruce Momjian
Thu, 18 May 2006 00:50:08 +0000 (00:50 +0000)
committerBruce Momjian
Thu, 18 May 2006 00:50:08 +0000 (00:50 +0000)
doc/src/sgml/func.sgml

index 1c6738b8cb4b3a22e3cb805213509ed8c1c50c93..a9d1a3b750745a2190a53fb834d000e38537292a 100644 (file)
@@ -1,4 +1,4 @@
-
+
 
  
   Functions and Operators
 
      
       
-       ascii(text)
+       ascii(string)
        int
        ASCII code of the first byte of the argument
        ascii('x')
 
       
        
-        convert(string
-        text,
+        convert(string text,
         src_encoding name,
         dest_encoding name)
        
              
 
       
-       initcap(text)
+       initcap(string)
        text
        
         Convert the first letter of each word to uppercase and the
       
 
       
-       length(string text)
+       length(string)
        int
        
         Number of characters in string
       
 
       
-       md5(string text)
+       md5(string)
        text
        
         Calculates the MD5 hash of string,
       
 
       
-       quote_ident(string text)
+       quote_ident(string)
        text
        
         Return the given string suitably quoted to be used as an identifier
       
 
       
-       quote_literal(string text)
+       quote_literal(string)
        text
        
         Return the given string suitably quoted to be used as a string literal
       
 
       
-       to_ascii(text
-        encoding)
+       to_ascii(<parameter>string <type>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
 
       
        
-        translate(string
-        text,
+        translate(string text,
         from text,
         to text)