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:09:39 +0100 |
commit | c987c9d42bc698fb2930280d46d191a50abe68f1 (patch) | |
tree | a5316caadd748cb7f8f5fb42778953dade0fefb1 /src | |
parent | 612d207bcc05d1048a8648407b064df14cd3104a (diff) | |
download | postgresql-c987c9d42bc698fb2930280d46d191a50abe68f1.tar.gz postgresql-c987c9d42bc698fb2930280d46d191a50abe68f1.zip |
Fix typo
Reported-by: Daniel Verite <daniel@manitou-mail.org>
Diffstat (limited to 'src')
-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 1eacdb298f3..18b4a9a3558 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 * |