aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNeil Conway <neilc@samurai.com>2004-09-13 01:45:32 +0000
committerNeil Conway <neilc@samurai.com>2004-09-13 01:45:32 +0000
commit9ffeab55c909a24c1895c0d10093ac27a9575f0c (patch)
treee60a3d0cc0e62f09fbd189c7e8af1754568e25f0 /src
parent409de6be6c6c1055821da333326ea94dc4d251ce (diff)
downloadpostgresql-9ffeab55c909a24c1895c0d10093ac27a9575f0c.tar.gz
postgresql-9ffeab55c909a24c1895c0d10093ac27a9575f0c.zip
Fix two typos in comments.
Diffstat (limited to 'src')
-rw-r--r--src/backend/utils/fmgr/fmgr.c4
-rw-r--r--src/pl/plpgsql/src/scan.l4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/utils/fmgr/fmgr.c b/src/backend/utils/fmgr/fmgr.c
index de88e86bbc3..b963fd86e9e 100644
--- a/src/backend/utils/fmgr/fmgr.c
+++ b/src/backend/utils/fmgr/fmgr.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/utils/fmgr/fmgr.c,v 1.83 2004/08/30 02:54:39 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/utils/fmgr/fmgr.c,v 1.84 2004/09/13 01:44:46 neilc Exp $
*
*-------------------------------------------------------------------------
*/
@@ -34,7 +34,7 @@
* %d0. So if a function pointer is declared to return a pointer, the
* compiler may look only into %a0, but if the called function was declared
* to return an integer type, it puts its value only into %d0. So the
- * caller doesn't pink up the correct return value. The solution is to
+ * caller doesn't pick up the correct return value. The solution is to
* declare the function pointer to return int, so the compiler picks up the
* return value from %d0. (Functions returning pointers put their value
* *additionally* into %d0 for compatibility.) The price is that there are
diff --git a/src/pl/plpgsql/src/scan.l b/src/pl/plpgsql/src/scan.l
index 5e6ccd68d71..9b2615df105 100644
--- a/src/pl/plpgsql/src/scan.l
+++ b/src/pl/plpgsql/src/scan.l
@@ -4,7 +4,7 @@
* procedural language
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/pl/plpgsql/src/scan.l,v 1.36 2004/07/31 23:04:56 tgl Exp $
+ * $PostgreSQL: pgsql/src/pl/plpgsql/src/scan.l,v 1.37 2004/09/13 01:45:32 neilc Exp $
*
* This software is copyrighted by Jan Wieck - Hamburg.
*
@@ -118,7 +118,7 @@ dolqinside [^$]+
/* ----------
* On the first call to a new source report the
- * functions type (T_FUNCTION or T_TRIGGER)
+ * function's type (T_FUNCTION or T_TRIGGER)
* ----------
*/
if (!scanner_typereported)