diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2021-07-22 09:37:35 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2021-07-22 09:37:35 +0200 |
commit | 86a1aae764b03c7fe06e290e409c8d1a72ff187d (patch) | |
tree | c0dcd8cb4a8c18f8a85707ec7a5ad7a01ce22557 /src/backend/utils/mb/Unicode/convutils.pm | |
parent | 6a2c532c2230159b909382cfa58494ef9d6df703 (diff) | |
download | postgresql-86a1aae764b03c7fe06e290e409c8d1a72ff187d.tar.gz postgresql-86a1aae764b03c7fe06e290e409c8d1a72ff187d.zip |
Fix typo in comment
Author: Kyotaro Horiguchi <horikyota.ntt@gmail.com>
Discussion: https://www.postgresql.org/message-id/flat/20210716.170209.175434392011070182.horikyota.ntt%40gmail.com
Diffstat (limited to 'src/backend/utils/mb/Unicode/convutils.pm')
-rw-r--r-- | src/backend/utils/mb/Unicode/convutils.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/mb/Unicode/convutils.pm b/src/backend/utils/mb/Unicode/convutils.pm index 551603ee144..284746985e3 100644 --- a/src/backend/utils/mb/Unicode/convutils.pm +++ b/src/backend/utils/mb/Unicode/convutils.pm @@ -579,7 +579,7 @@ sub print_radix_table printf $out " 0x%02x, /* b3_3_lower */\n", $b3_3_lower; printf $out " 0x%02x, /* b3_3_upper */\n", $b3_3_upper; printf $out "\n"; - printf $out " 0x%04x, /* offset of table for 3-byte inputs */\n", + printf $out " 0x%04x, /* offset of table for 4-byte inputs */\n", $b4root; printf $out " 0x%02x, /* b4_1_lower */\n", $b4_1_lower; printf $out " 0x%02x, /* b4_1_upper */\n", $b4_1_upper; |