diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2012-05-02 10:20:27 +0300 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2012-05-02 10:20:27 +0300 |
commit | f291ccd43e06fdd7c55102975a0b2f38bc140b90 (patch) | |
tree | 517cbe6d9dbb427189099a89ecc460dda2c8f334 /src/backend/utils/adt/numeric.c | |
parent | 50c2d6a1a63f04fd8c4553fc696c2c9e235b1a25 (diff) | |
download | postgresql-f291ccd43e06fdd7c55102975a0b2f38bc140b90.tar.gz postgresql-f291ccd43e06fdd7c55102975a0b2f38bc140b90.zip |
Remove duplicate words in comments.
Found these with grep -r "for for ".
Diffstat (limited to 'src/backend/utils/adt/numeric.c')
-rw-r--r-- | src/backend/utils/adt/numeric.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c index 5723b9af4ed..14bbdad93ba 100644 --- a/src/backend/utils/adt/numeric.c +++ b/src/backend/utils/adt/numeric.c @@ -3503,7 +3503,7 @@ get_str_from_var(NumericVar *var, int dscale) /* * Allocate space for the result. * - * i is set to to # of decimal digits before decimal point. dscale is the + * i is set to the # of decimal digits before decimal point. dscale is the * # of decimal digits we will print after decimal point. We may generate * as many as DEC_DIGITS-1 excess digits at the end, and in addition we * need room for sign, decimal point, null terminator. |