]> granicus.if.org Git - postgresql/blobdiff - src/backend/utils/adt/array_userfuncs.c
pgindent run for 9.4
[postgresql] / src / backend / utils / adt / array_userfuncs.c
index a6ba0cf5a5ab0554529062120f61d33737fd2894..831466dec914946bdd95c73f25418784dbdba427 100644 (file)
@@ -3,7 +3,7 @@
  * array_userfuncs.c
  *       Misc user-visible array support functions
  *
- * Copyright (c) 2003-2012, PostgreSQL Global Development Group
+ * Copyright (c) 2003-2014, PostgreSQL Global Development Group
  *
  * IDENTIFICATION
  *       src/backend/utils/adt/array_userfuncs.c
@@ -502,7 +502,7 @@ array_agg_transfn(PG_FUNCTION_ARGS)
 
        /*
         * The transition type for array_agg() is declared to be "internal", which
-        * is a pass-by-value type the same size as a pointer.  So we can safely
+        * is a pass-by-value type the same size as a pointer.  So we can safely
         * pass the ArrayBuildState pointer through nodeAgg.c's machinations.
         */
        PG_RETURN_POINTER(state);
@@ -517,7 +517,7 @@ array_agg_finalfn(PG_FUNCTION_ARGS)
        int                     lbs[1];
 
        /*
-        * Test for null before Asserting we are in right context.      This is to
+        * Test for null before Asserting we are in right context.  This is to
         * avoid possible Assert failure in 8.4beta installations, where it is
         * possible for users to create NULL constants of type internal.
         */