summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian2002-07-18 04:42:29 +0000
committerBruce Momjian2002-07-18 04:42:29 +0000
commitfc5372e09930766f3559555e19262b4b861f3646 (patch)
treebd2c9ccd8ceb47dd4ebcbf0cc6d95ebbb316998e /src
parent3e22406ec63b60ed50d3d0c593f9e84b5e1d058b (diff)
You made a tiny little type in a comment in parsenodes.h (abotu instead
of about). Christopher Kings-Lynne
Diffstat (limited to 'src')
-rw-r--r--src/include/nodes/parsenodes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h
index 7f0cbd6ac2a..f64f1b3d746 100644
--- a/src/include/nodes/parsenodes.h
+++ b/src/include/nodes/parsenodes.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: parsenodes.h,v 1.188 2002/07/18 04:41:45 momjian Exp $
+ * $Id: parsenodes.h,v 1.189 2002/07/18 04:42:29 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -185,7 +185,7 @@ typedef struct BetweenExpr
Node *rexpr; /* Second bound */
bool not; /* Do we want inverse? */
bool symmetric; /* True if SYMMETRIC, false if ASYMMETRIC */
- Oid typeId; /* Information abotu common type */
+ Oid typeId; /* Information about common type */
int16 typeLen;
bool typeByVal;
Expr *gthan;