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:47 +0100 |
commit | 09e40f2b68e1a04d7d0bb0e91f56df0d64b21786 (patch) | |
tree | 12ba8b53f045fb421144ad6af26b051bd0561b7e | |
parent | 32aa14d40c7ce12e648c9f88fe22fa0146bee3b4 (diff) | |
download | postgresql-09e40f2b68e1a04d7d0bb0e91f56df0d64b21786.tar.gz postgresql-09e40f2b68e1a04d7d0bb0e91f56df0d64b21786.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 6281f2222fe..e2c5d25b6c2 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 * |