1616 *
1717 * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
1818 *
19- * $PostgreSQL: pgsql/src/port/pgstrcasecmp.c,v 1.7 2006/03/05 15:59:10 momjian Exp $
19+ * $PostgreSQL: pgsql/src/port/pgstrcasecmp.c,v 1.8 2006/10/07 21:48:43 tgl Exp $
2020 *
2121 *-------------------------------------------------------------------------
2222 */
@@ -94,7 +94,7 @@ pg_strncasecmp(const char *s1, const char *s2, size_t n)
9494 * Fold a character to upper case.
9595 *
9696 * Unlike some versions of toupper(), this is safe to apply to characters
97- * that aren'tupper case letters. Note however that the whole thing is
97+ * that aren'tlower case letters. Note however that the whole thing is
9898 * a bit bogus for multibyte character sets.
9999 */
100100unsignedchar
@@ -111,7 +111,7 @@ pg_toupper(unsigned char ch)
111111 * Fold a character to lower case.
112112 *
113113 * Unlike some versions of tolower(), this is safe to apply to characters
114- * that aren'tlower case letters. Note however that the whole thing is
114+ * that aren'tupper case letters. Note however that the whole thing is
115115 * a bit bogus for multibyte character sets.
116116 */
117117unsignedchar