diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2020-02-19 20:52:42 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2020-02-19 21:08:47 +0100 |
commit | 2f9c46a32b43d72c9384378827ee51fde896807c (patch) | |
tree | 0cf728193f89f243579b7ab97163f6a77e1a7105 | |
parent | 761a5688b179d46091e7314458571c5fc537084a (diff) | |
download | postgresql-2f9c46a32b43d72c9384378827ee51fde896807c.tar.gz postgresql-2f9c46a32b43d72c9384378827ee51fde896807c.zip |
Fix typo
Reported-by: Daniel Verite <daniel@manitou-mail.org>
-rw-r--r-- | src/common/unicode_norm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/unicode_norm.c b/src/common/unicode_norm.c index affec88f992..ab56490a075 100644 --- a/src/common/unicode_norm.c +++ b/src/common/unicode_norm.c @@ -300,7 +300,7 @@ decompose_code(pg_wchar code, pg_wchar **result, int *current) * The input is a 0-terminated array of codepoints. * * In frontend, returns a 0-terminated array of codepoints, allocated with - * malloc. Or NULL if we run out of memory. In frontend, the returned + * malloc. Or NULL if we run out of memory. In backend, the returned * string is palloc'd instead, and OOM is reported with ereport(). */ pg_wchar * |