summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2006-10-07 21:48:43 +0000
committerTom Lane2006-10-07 21:48:43 +0000
commitb85bc85edb8c385553a046f125a3ad4c91ebf777 (patch)
tree712848dd6b023f60e353c506485a7c61026c08a3
parent1773b4b152e85765f0d7bcde87627e3c2abd2f97 (diff)
Fix thinko in comment.
-rw-r--r--src/port/pgstrcasecmp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/port/pgstrcasecmp.c b/src/port/pgstrcasecmp.c
index 8281651991..99a3b03b6a 100644
--- a/src/port/pgstrcasecmp.c
+++ b/src/port/pgstrcasecmp.c
@@ -94,7 +94,7 @@ pg_strncasecmp(const char *s1, const char *s2, size_t n)
* Fold a character to upper case.
*
* Unlike some versions of toupper(), this is safe to apply to characters
- * that aren't upper case letters. Note however that the whole thing is
+ * that aren't lower case letters. Note however that the whole thing is
* a bit bogus for multibyte character sets.
*/
unsigned char
@@ -111,7 +111,7 @@ pg_toupper(unsigned char ch)
* Fold a character to lower case.
*
* Unlike some versions of tolower(), this is safe to apply to characters
- * that aren't lower case letters. Note however that the whole thing is
+ * that aren't upper case letters. Note however that the whole thing is
* a bit bogus for multibyte character sets.
*/
unsigned char