]> granicus.if.org Git - postgresql/commitdiff
Clean up comments.
authorThomas G. Lockhart <lockhart@fourpalms.org>
Sat, 25 Oct 1997 05:21:10 +0000 (05:21 +0000)
committerThomas G. Lockhart <lockhart@fourpalms.org>
Sat, 25 Oct 1997 05:21:10 +0000 (05:21 +0000)
src/backend/utils/adt/nabstime.c

index eb1c8eff2b7c19995e7885906795ce4a906e1b43..002b45558cd2672ac8e25b34125a335d0cc8c115 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/utils/adt/nabstime.c,v 1.34 1997/09/08 21:48:32 momjian Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/utils/adt/nabstime.c,v 1.35 1997/10/25 05:21:10 thomas Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -393,7 +393,7 @@ abstime_finite(AbsoluteTime abstime)
 {
        return ((abstime != INVALID_ABSTIME)
                  && (abstime != NOSTART_ABSTIME) && (abstime != NOEND_ABSTIME));
-}                                                              /* abstime_datetime() */
+} /* abstime_finite() */
 
 
 /*
@@ -535,10 +535,10 @@ datetime_abstime(DateTime *datetime)
        };
 
        return (result);
-}                                                              /* datetime_abstime() */
+} /* datetime_abstime() */
 
 /* abstime_datetime()
- * Convert datetime to abstime.
+ * Convert abstime to datetime.
  */
 DateTime   *
 abstime_datetime(AbsoluteTime abstime)
@@ -576,4 +576,4 @@ abstime_datetime(AbsoluteTime abstime)
        };
 
        return (result);
-}                                                              /* abstime_datetime() */
+} /* abstime_datetime() */