diff options
Diffstat (limited to 'src/backend/nodes/read.c')
-rw-r--r-- | src/backend/nodes/read.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/nodes/read.c b/src/backend/nodes/read.c index d3c742693bb..a775f9120ee 100644 --- a/src/backend/nodes/read.c +++ b/src/backend/nodes/read.c @@ -216,9 +216,9 @@ nodeTokenType(char *token, int length) { /* * Yes. Figure out whether it is integral or float; this requires - * both a syntax check and a range check. strtoint() can do both for us. - * We know the token will end at a character that strtoint will stop at, - * so we do not need to modify the string. + * both a syntax check and a range check. strtoint() can do both for + * us. We know the token will end at a character that strtoint will + * stop at, so we do not need to modify the string. */ char *endptr; |