From dd2894dfd6838f5b4cc4c60e802c2b2aff8c0830 Mon Sep 17 00:00:00 2001 From: Neil Conway Date: Mon, 23 May 2005 01:29:54 +0000 Subject: [PATCH] Consistently do not include a terminating period in single-sentence function descriptions in func.sgml; other minor SGML tweaks. --- doc/src/sgml/func.sgml | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 8c6eebc86c..8cb4bb72b2 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -1,5 +1,5 @@ @@ -1026,7 +1026,7 @@ PostgreSQL documentation Remove the longest string containing only the characters (a space by default) from the - start/end/both ends of the string. + start/end/both ends of the string trim(both 'x' from 'xTomxx') Tom @@ -1078,7 +1078,7 @@ PostgreSQL documentation Remove the longest string consisting only of characters in characters (a space by default) - from the start and end of string. + from the start and end of string btrim('xyxtrimyyx', 'xy') trim @@ -1155,7 +1155,7 @@ PostgreSQL documentation length(string text) integer - Number of characters in string. + Number of characters in string character string length @@ -1197,7 +1197,7 @@ PostgreSQL documentation Remove the longest string containing only characters from characters (a space by default) from the start of - string. + string ltrim('zzzytrim', 'xyz') trim @@ -1208,7 +1208,7 @@ PostgreSQL documentation text Calculates the MD5 hash of string, - returning the result in hexadecimal. + returning the result in hexadecimal md5('abc') 900150983cd24fb0 d6963f7d28e17f72 @@ -1265,7 +1265,7 @@ PostgreSQL documentation to text) text Replace all occurrences in string of substring - from with substring to. + from with substring to replace( 'abcdefabcdef', 'cd', 'XX') abXXefabXXef @@ -1297,7 +1297,7 @@ PostgreSQL documentation Remove the longest string containing only characters from characters (a space by default) from the end of - string. + string rtrim('trimxxxx', 'x') trim @@ -1382,7 +1382,7 @@ PostgreSQL documentation Any character in string that matches a character in the from set is replaced by the corresponding character in the to - set. + set translate('12345', '14', 'ax') a23x5 @@ -2221,7 +2221,7 @@ PostgreSQL documentation get_byte(string, offset) integer - Extract byte from string. + Extract byte from string get_byte @@ -2235,7 +2235,7 @@ PostgreSQL documentation offset, newvalue) bytea - Set byte in string. + Set byte in string set_byte @@ -2248,7 +2248,7 @@ PostgreSQL documentation get_bit(string, offset) integer - Extract bit from string. + Extract bit from string get_bit @@ -2262,7 +2262,7 @@ PostgreSQL documentation offset, newvalue) bytea - Set bit in string. + Set bit in string set_bit @@ -2303,7 +2303,7 @@ PostgreSQL documentation Remove the longest string consisting only of bytes in bytes from the start and end of - string. + string btrim('\\000trim\\000'::bytea, '\\000'::bytea) trim @@ -2333,7 +2333,7 @@ PostgreSQL documentation text Calculates the MD5 hash of string, - returning the result in hexadecimal. + returning the result in hexadecimal md5('Th\\000omas'::bytea) 8ab2d3c9689aaf18 b4958c334c82d8b1 @@ -2365,7 +2365,7 @@ PostgreSQL documentation encode('123\\000456'::bytea, 'escape') 123\000456 - + @@ -6632,7 +6632,7 @@ SELECT setval('foo', 42, false); Next nextval wi If a sequence object has been created with default parameters, nextval calls on it will return successive values beginning with 1. Other behaviors can be obtained by using - special parameters in the command; + special parameters in the command; see its command reference page for more information. @@ -7992,7 +7992,7 @@ AND setof int or setof bigint (same as argument type) Generate a series of values, from start to stop - with a step size of one. + with a step size of one @@ -8002,7 +8002,7 @@ AND setof int or setof bigint (same as argument type) Generate a series of values, from start to stop - with a step size of step. + with a step size of step -- 2.40.0