diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-03-20 04:12:25 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-03-20 04:12:25 +0000 |
commit | 6df719184c744a7bee72d69fb2b511498b7070da (patch) | |
tree | d7098a7c104e597eda1a0750507dc8a556c569a5 /src | |
parent | 76e6d260110a520450933d96e0c33690206c920b (diff) | |
download | postgresql-6df719184c744a7bee72d69fb2b511498b7070da.tar.gz postgresql-6df719184c744a7bee72d69fb2b511498b7070da.zip |
Fix spelling of "including
Edward J. Huff
Diffstat (limited to 'src')
-rw-r--r-- | src/include/lib/stringinfo.h | 4 | ||||
-rw-r--r-- | src/tutorial/syscat.source | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/include/lib/stringinfo.h b/src/include/lib/stringinfo.h index 74a6929883a..f9987db1682 100644 --- a/src/include/lib/stringinfo.h +++ b/src/include/lib/stringinfo.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: stringinfo.h,v 1.5 1997/09/08 21:52:22 momjian Exp $ + * $Id: stringinfo.h,v 1.6 1998/03/20 04:12:21 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -19,7 +19,7 @@ * 'data' is the string. * 'len' is the current string length (as returned by 'strlen') * 'maxlen' is the size in bytes of 'data', i.e. the maximum string - * size (includeing the terminating '\0' char) that we can + * size (including the terminating '\0' char) that we can * currently store in 'data' without having to reallocate * more space. */ diff --git a/src/tutorial/syscat.source b/src/tutorial/syscat.source index 5234499be63..c674486a504 100644 --- a/src/tutorial/syscat.source +++ b/src/tutorial/syscat.source @@ -6,7 +6,7 @@ -- -- Copyright (c) 1994, Regents of the University of California -- --- $Id: syscat.source,v 1.2 1998/02/28 23:37:10 scrappy Exp $ +-- $Id: syscat.source,v 1.3 1998/03/20 04:12:25 momjian Exp $ -- --------------------------------------------------------------------------- @@ -65,7 +65,7 @@ SELECT c.relname, a.attname, t.typname -- --- lists all user-defined base types (not includeing array types) +-- lists all user-defined base types (not including array types) -- SELECT u.usename, t.typname FROM pg_type t, pg_user u |