From: Tom Lane Date: Mon, 14 Jul 2003 20:34:18 +0000 (+0000) Subject: Fix typo in comment, as noted by Weiping He. X-Git-Tag: REL9_0_0~14938 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=b800196230c7eca35d781df39cf3a4b739c86300;p=pg-rex%2Fsyncrep.git Fix typo in comment, as noted by Weiping He. --- diff --git a/src/include/utils/array.h b/src/include/utils/array.h index 0d99816c24..50c222a9b4 100644 --- a/src/include/utils/array.h +++ b/src/include/utils/array.h @@ -10,7 +10,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: array.h,v 1.41 2003/06/27 00:33:26 tgl Exp $ + * $Id: array.h,v 1.42 2003/07/14 20:34:18 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -81,7 +81,7 @@ typedef struct ArrayMetaState * ARR_LBOUND returns a pointer to an array of array lower bounds. * * That is: if the third axis of an array has elements 5 through 10, then - * ARR_DIMS(a)[2] == 6 and ARR_LBOUND[2] == 5. + * ARR_DIMS(a)[2] == 6 and ARR_LBOUND(a)[2] == 5. * * Unlike C, the default lower bound is 1. */