Commit b27c90bb authored by David Rowley's avatar David Rowley

Fix invalid function references in a few comments

These appear to have been forgotten when the functions were renamed in
1fd687a0.

Backpatch-through: 13, where the functions were renamed
parent 05dea242
...@@ -545,11 +545,11 @@ pg_lltoa(int64 value, char *a) ...@@ -545,11 +545,11 @@ pg_lltoa(int64 value, char *a)
* The intended use-case for this function is to build strings that contain * The intended use-case for this function is to build strings that contain
* multiple individual numbers, for example: * multiple individual numbers, for example:
* *
* str = pg_ltostr_zeropad(str, hours, 2); * str = pg_ultostr_zeropad(str, hours, 2);
* *str++ = ':'; * *str++ = ':';
* str = pg_ltostr_zeropad(str, mins, 2); * str = pg_ultostr_zeropad(str, mins, 2);
* *str++ = ':'; * *str++ = ':';
* str = pg_ltostr_zeropad(str, secs, 2); * str = pg_ultostr_zeropad(str, secs, 2);
* *str = '\0'; * *str = '\0';
* *
* Note: Caller must ensure that 'str' points to enough memory to hold the * Note: Caller must ensure that 'str' points to enough memory to hold the
...@@ -578,7 +578,7 @@ pg_ultostr_zeropad(char *str, uint32 value, int32 minwidth) ...@@ -578,7 +578,7 @@ pg_ultostr_zeropad(char *str, uint32 value, int32 minwidth)
} }
/* /*
* pg_ltostr * pg_ultostr
* Converts 'value' into a decimal string representation stored at 'str'. * Converts 'value' into a decimal string representation stored at 'str'.
* *
* Returns the ending address of the string result (the last character written * Returns the ending address of the string result (the last character written
...@@ -587,9 +587,9 @@ pg_ultostr_zeropad(char *str, uint32 value, int32 minwidth) ...@@ -587,9 +587,9 @@ pg_ultostr_zeropad(char *str, uint32 value, int32 minwidth)
* The intended use-case for this function is to build strings that contain * The intended use-case for this function is to build strings that contain
* multiple individual numbers, for example: * multiple individual numbers, for example:
* *
* str = pg_ltostr(str, a); * str = pg_ultostr(str, a);
* *str++ = ' '; * *str++ = ' ';
* str = pg_ltostr(str, b); * str = pg_ultostr(str, b);
* *str = '\0'; * *str = '\0';
* *
* Note: Caller must ensure that 'str' points to enough memory to hold the * Note: Caller must ensure that 'str' points to enough memory to hold the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment