summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Conway2004-09-10 04:36:42 +0000
committerNeil Conway2004-09-10 04:36:42 +0000
commit86fe66733250271f6fc8fb15f7e7b447eda7c752 (patch)
tree7c921ef053299b873d6e8ecac1f02fc98c79ba23
parentb57dcc2e19f784321574baffdf299b5de37404a6 (diff)
Fix two typos in comments.
-rw-r--r--contrib/cube/cubeparse.y2
-rw-r--r--contrib/seg/segparse.y2
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/cube/cubeparse.y b/contrib/cube/cubeparse.y
index c92bc7b474..9157496672 100644
--- a/contrib/cube/cubeparse.y
+++ b/contrib/cube/cubeparse.y
@@ -10,7 +10,7 @@
#include "cubedata.h"
-#undef yylex /* falure to redefine yylex will result in a call to the */
+#undef yylex /* failure to redefine yylex will result in a call to the */
#define yylex cube_yylex /* wrong scanner when running inside the postgres backend */
extern int yylex(void); /* defined as cube_yylex in cubescan.l */
diff --git a/contrib/seg/segparse.y b/contrib/seg/segparse.y
index 2fef7a1128..86640d7e51 100644
--- a/contrib/seg/segparse.y
+++ b/contrib/seg/segparse.y
@@ -7,7 +7,7 @@
#include "segdata.h"
-#undef yylex /* falure to redefine yylex will result in calling the */
+#undef yylex /* failure to redefine yylex will result in calling the */
#define yylex seg_yylex /* wrong scanner when running inside postgres backend */
extern int yylex(void); /* defined as seg_yylex in segscan.l */