1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-05 07:21:24 +03:00

Remove duplicate words in comments.

Found these with grep -r "for for ".
This commit is contained in:
Heikki Linnakangas
2012-05-02 10:20:27 +03:00
parent 50c2d6a1a6
commit f291ccd43e
5 changed files with 5 additions and 5 deletions

View File

@ -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.