Skip to content

Commit 5d429f8

Browse files
committed
Minimal message corrections found by spell checker.
1 parent 376ee15 commit 5d429f8

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/backend/commands/operatorcmds.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*
1010
*
1111
* IDENTIFICATION
12-
* $PostgreSQL: pgsql/src/backend/commands/operatorcmds.c,v 1.35 2007/01/05 22:19:26 momjian Exp $
12+
* $PostgreSQL: pgsql/src/backend/commands/operatorcmds.c,v 1.36 2007/06/02 23:36:35 petere Exp $
1313
*
1414
* DESCRIPTION
1515
* The "DefineFoo" routines take the parse tree and pick out the
@@ -99,15 +99,15 @@ DefineOperator(List *names, List *parameters)
9999
if (typeName1->setof)
100100
ereport(ERROR,
101101
(errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
102-
errmsg("setof type not allowed for operator argument")));
102+
errmsg("SETOF type not allowed for operator argument")));
103103
}
104104
else if (pg_strcasecmp(defel->defname, "rightarg") == 0)
105105
{
106106
typeName2 = defGetTypeName(defel);
107107
if (typeName2->setof)
108108
ereport(ERROR,
109109
(errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
110-
errmsg("setof type not allowed for operator argument")));
110+
errmsg("SETOF type not allowed for operator argument")));
111111
}
112112
else if (pg_strcasecmp(defel->defname, "procedure") == 0)
113113
functionName = defGetQualifiedName(defel);

src/backend/utils/misc/guc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Written by Peter Eisentraut <peter_e@gmx.net>.
1111
*
1212
* IDENTIFICATION
13-
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.391 2007/05/08 16:33:51 petere Exp $
13+
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.392 2007/06/02 23:36:35 petere Exp $
1414
*
1515
*--------------------------------------------------------------------
1616
*/
@@ -1979,7 +1979,7 @@ static struct config_string ConfigureNamesString[] =
19791979

19801980
{
19811981
{"session_replication_role", PGC_SUSET, CLIENT_CONN_STATEMENT,
1982-
gettext_noop("Sets the sessions behaviour for triggers and rewrite rules."),
1982+
gettext_noop("Sets the sessions behavior for triggers and rewrite rules."),
19831983
gettext_noop("Each session can be either"
19841984
" \"origin\", \"replica\" or \"local\".")
19851985
},

src/backend/utils/misc/tzparser.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* Portions Copyright (c) 1994, Regents of the University of California
1414
*
1515
* IDENTIFICATION
16-
* $PostgreSQL: pgsql/src/backend/utils/misc/tzparser.c,v 1.4 2007/01/05 22:19:46 momjian Exp $
16+
* $PostgreSQL: pgsql/src/backend/utils/misc/tzparser.c,v 1.5 2007/06/02 23:36:35 petere Exp $
1717
*
1818
*-------------------------------------------------------------------------
1919
*/
@@ -381,7 +381,7 @@ ParseTzFile(const char *filename, int depth,
381381
{
382382
ereport(tz_elevel,
383383
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
384-
errmsg("@INCLUDE without filename in time zone file \"%s\", line %d",
384+
errmsg("@INCLUDE without file name in time zone file \"%s\", line %d",
385385
filename, lineno)));
386386
return -1;
387387
}

0 commit comments

Comments
 (0)