diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-01-22 20:44:20 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-01-22 20:44:20 +0000 |
commit | b3d7af46a99d9551ef554a15361419f054e10db1 (patch) | |
tree | 90990d7cdfa75e7ef2a8389b4172a2513f1520fa /src | |
parent | c4d0ff32e9bfc5f9876854c093486e2a9428a617 (diff) | |
download | postgresql-b3d7af46a99d9551ef554a15361419f054e10db1.tar.gz postgresql-b3d7af46a99d9551ef554a15361419f054e10db1.zip |
Fix sloppy comment.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/adt/date.c | 4 | ||||
-rw-r--r-- | src/backend/utils/adt/timestamp.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/utils/adt/date.c b/src/backend/utils/adt/date.c index b952480f2fe..11a58b41746 100644 --- a/src/backend/utils/adt/date.c +++ b/src/backend/utils/adt/date.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/adt/date.c,v 1.75 2003/01/09 01:06:57 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/adt/date.c,v 1.76 2003/01/22 20:44:20 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -656,7 +656,7 @@ AdjustTimeForTypmod(TimeADT *time, int32 typmod) /* * Note: this round-to-nearest code is not completely consistent * about rounding values that are exactly halfway between integral - * values. On most platforms, rint() will implement round-to-nearest, + * values. On most platforms, rint() will implement round-to-nearest-even, * but the integer code always rounds up (away from zero). Is it * worth trying to be consistent? */ diff --git a/src/backend/utils/adt/timestamp.c b/src/backend/utils/adt/timestamp.c index 19fb9c11843..bb094707a6f 100644 --- a/src/backend/utils/adt/timestamp.c +++ b/src/backend/utils/adt/timestamp.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/adt/timestamp.c,v 1.76 2003/01/09 01:06:57 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/adt/timestamp.c,v 1.77 2003/01/22 20:44:20 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -206,7 +206,7 @@ AdjustTimestampForTypmod(Timestamp *time, int32 typmod) /* * Note: this round-to-nearest code is not completely consistent * about rounding values that are exactly halfway between integral - * values. On most platforms, rint() will implement round-to-nearest, + * values. On most platforms, rint() will implement round-to-nearest-even, * but the integer code always rounds up (away from zero). Is it * worth trying to be consistent? */ @@ -677,7 +677,7 @@ AdjustIntervalForTypmod(Interval *interval, int32 typmod) /* * Note: this round-to-nearest code is not completely consistent * about rounding values that are exactly halfway between integral - * values. On most platforms, rint() will implement round-to-nearest, + * values. On most platforms, rint() will implement round-to-nearest-even, * but the integer code always rounds up (away from zero). Is it * worth trying to be consistent? */ |