aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/execProcnode.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2000-01-05 18:23:54 +0000
committerBruce Momjian <bruce@momjian.us>2000-01-05 18:23:54 +0000
commitb78769fda2dc51052d2d0349f4b284c7431dcd01 (patch)
treefc0e9cef831aa1906d9754390cbc2b6c85c93cc3 /src/backend/executor/execProcnode.c
parentc0cab6f4fa7642425728c710bb3215f94c239ddb (diff)
downloadpostgresql-b78769fda2dc51052d2d0349f4b284c7431dcd01.tar.gz
postgresql-b78769fda2dc51052d2d0349f4b284c7431dcd01.zip
Fix it's and its to be correct.
Diffstat (limited to 'src/backend/executor/execProcnode.c')
-rw-r--r--src/backend/executor/execProcnode.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/executor/execProcnode.c b/src/backend/executor/execProcnode.c
index d4527be23ba..72f3e19fc42 100644
--- a/src/backend/executor/execProcnode.c
+++ b/src/backend/executor/execProcnode.c
@@ -4,22 +4,22 @@
* contains dispatch functions which call the appropriate "initialize",
* "get a tuple", and "cleanup" routines for the given node type.
* If the node has children, then it will presumably call ExecInitNode,
- * ExecProcNode, or ExecEndNode on it's subnodes and do the appropriate
+ * ExecProcNode, or ExecEndNode on its subnodes and do the appropriate
* processing..
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/executor/execProcnode.c,v 1.16 1999/11/23 20:06:51 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/executor/execProcnode.c,v 1.17 2000/01/05 18:23:46 momjian Exp $
*
*-------------------------------------------------------------------------
*/
/*
* INTERFACE ROUTINES
- * ExecInitNode - initialize a plan node and it's subplans
+ * ExecInitNode - initialize a plan node and its subplans
* ExecProcNode - get a tuple by executing the plan node
- * ExecEndNode - shut down a plan node and it's subplans
+ * ExecEndNode - shut down a plan node and its subplans
*
* NOTES
* This used to be three files. It is now all combined into