diff options
author | Daniel Gustafsson <dgustafsson@postgresql.org> | 2023-09-25 13:29:34 +0200 |
---|---|---|
committer | Daniel Gustafsson <dgustafsson@postgresql.org> | 2023-09-25 13:29:34 +0200 |
commit | c1609cf3c014294937058d4ca2b3160ec1b5be8c (patch) | |
tree | aca0e079d1e4912d2358264b9aae78643cfa29c4 /src/backend/utils/adt/numutils.c | |
parent | 7750fefdb2b81e0ee09c523d0a21cbd37edaf4b2 (diff) | |
download | postgresql-c1609cf3c014294937058d4ca2b3160ec1b5be8c.tar.gz postgresql-c1609cf3c014294937058d4ca2b3160ec1b5be8c.zip |
Fix typo in numutils.c comments
s/messges/messages/
Diffstat (limited to 'src/backend/utils/adt/numutils.c')
-rw-r--r-- | src/backend/utils/adt/numutils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/adt/numutils.c b/src/backend/utils/adt/numutils.c index d07a5602076..a597e5ed796 100644 --- a/src/backend/utils/adt/numutils.c +++ b/src/backend/utils/adt/numutils.c @@ -891,7 +891,7 @@ invalid_syntax: * so that caller can parse the rest. Otherwise, it's an error if anything * but whitespace follows. * - * typname is what is reported in error messges. + * typname is what is reported in error messages. * * If escontext points to an ErrorSaveContext node, that is filled instead * of throwing an error; the caller must check SOFT_ERROR_OCCURRED() @@ -978,7 +978,7 @@ uint32in_subr(const char *s, char **endloc, * so that caller can parse the rest. Otherwise, it's an error if anything * but whitespace follows. * - * typname is what is reported in error messges. + * typname is what is reported in error messages. * * If escontext points to an ErrorSaveContext node, that is filled instead * of throwing an error; the caller must check SOFT_ERROR_OCCURRED() |