diff options
author | Neil Conway | 2007-02-14 03:08:44 +0000 |
---|---|---|
committer | Neil Conway | 2007-02-14 03:08:44 +0000 |
commit | 595630af28dfe3f679cdcb7c322284044838e159 (patch) | |
tree | 61bbd1dbf5c33530bb735018ac383cf3d0ed903a /src | |
parent | d7250994e694063da31cd86ea6fc0f0ac71c9359 (diff) |
Fix capitalization and punctuation of two more GUC description strings.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/misc/guc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index f7e6536f93d..e66573d7380 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -10,7 +10,7 @@ * Written by Peter Eisentraut <[email protected]>. * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.373 2007/02/07 00:52:35 petere Exp $ + * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.374 2007/02/14 03:08:44 neilc Exp $ * *-------------------------------------------------------------------- */ @@ -1311,7 +1311,7 @@ static struct config_int ConfigureNamesInt[] = #ifdef LOCK_DEBUG { {"trace_lock_oidmin", PGC_SUSET, DEVELOPER_OPTIONS, - gettext_noop("no description available"), + gettext_noop("No description available."), NULL, GUC_NOT_IN_SAMPLE }, @@ -1320,7 +1320,7 @@ static struct config_int ConfigureNamesInt[] = }, { {"trace_lock_table", PGC_SUSET, DEVELOPER_OPTIONS, - gettext_noop("no description available"), + gettext_noop("No description available."), NULL, GUC_NOT_IN_SAMPLE }, |