diff --git a/src/backend/executor/execAmi.c b/src/backend/executor/execAmi.c
index 6da5fe1ef5cfcd6d9e7db76a86eae12a72ed163c..5ae699df9801dd450669729467a5bb2ed5260a99 100644
--- a/src/backend/executor/execAmi.c
+++ b/src/backend/executor/execAmi.c
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/executor/execAmi.c,v 1.10 1997/11/21 18:21:17 momjian Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/executor/execAmi.c,v 1.11 1997/11/27 02:23:01 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -411,7 +411,7 @@ ExecRestrPos(Plan *node)
  *		  accessMtd -- access methods used to access the created relation.
  *		  relation	-- optional. Either an index to the range table or
  *					   negative number indicating a temporary relation.
- *					   A temporary relation is assume is this field is absent.
+ *					   A temporary relation is assume if this field is absent.
  * ----------------------------------------------------------------
  */
 
diff --git a/src/backend/parser/README b/src/backend/parser/README
index ddbcb6f63d8a8b53604d867eeb96860cac42b96b..402f193bc6a924f0f8b4fa5a28ea45a80fdf2425 100644
--- a/src/backend/parser/README
+++ b/src/backend/parser/README
@@ -7,7 +7,7 @@ scan.l		break query into tokens
 scansup.c	handle escapes in input
 keywords.c	turn keywords into specific tokens
 gram.y		parse the tokens and fill query-type-specific structures
-analyze.c	one function for every complex query type like SELECT, INSERT...
+analyze.c	handle post-parse processing for each query type
 parse_clause.c	handle clauses like WHERE, ORDER BY, GROUP BY, ...
 parse_expr.c	handle expressions like col, col + 3, x = 3 or x = 4
 parse_oper.c	handle operations in expressions