diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2011-06-19 00:37:30 +0300 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2011-06-19 00:37:30 +0300 |
commit | 8a8fbe7e799cfc0d8dc5ffef5640df6dac8acd6c (patch) | |
tree | 7cd85da650ada60be0f5cf8b2961d26c71fbe73d /doc/src | |
parent | 223d14a984e677823bd4f865ff22e14dd3fe9b76 (diff) | |
download | postgresql-8a8fbe7e799cfc0d8dc5ffef5640df6dac8acd6c.tar.gz postgresql-8a8fbe7e799cfc0d8dc5ffef5640df6dac8acd6c.zip |
Capitalization fixes
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/config.sgml | 2 | ||||
-rw-r--r-- | doc/src/sgml/libpq.sgml | 4 | ||||
-rw-r--r-- | doc/src/sgml/plpgsql.sgml | 2 | ||||
-rw-r--r-- | doc/src/sgml/spi.sgml | 4 | ||||
-rw-r--r-- | doc/src/sgml/storage.sgml | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index e835e4bc909..794aef4e6aa 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -259,7 +259,7 @@ SET ENABLE_SEQSCAN TO OFF; </indexterm> <listitem> <para> - Specifies the name of an additional process-id (PID) file that the + Specifies the name of an additional process-ID (PID) file that the server should create for use by server administration programs. This parameter can only be set at server start. </para> diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml index b359000ab30..3a57295bd3a 100644 --- a/doc/src/sgml/libpq.sgml +++ b/doc/src/sgml/libpq.sgml @@ -6116,7 +6116,7 @@ myEventProc(PGEventId evtId, void *evtInfo, void *passThrough) break; } - /* unknown event id, just return TRUE. */ + /* unknown event ID, just return TRUE. */ default: break; } @@ -7553,7 +7553,7 @@ main(int argc, char **argv) while ((notify = PQnotifies(conn)) != NULL) { fprintf(stderr, - "ASYNC NOTIFY of '%s' received from backend pid %d\n", + "ASYNC NOTIFY of '%s' received from backend PID %d\n", notify->relname, notify->be_pid); PQfreemem(notify); nnotifies++; diff --git a/doc/src/sgml/plpgsql.sgml b/doc/src/sgml/plpgsql.sgml index eea6ec58e32..20bc9910836 100644 --- a/doc/src/sgml/plpgsql.sgml +++ b/doc/src/sgml/plpgsql.sgml @@ -3174,7 +3174,7 @@ RAISE NOTICE 'Calling cs_create_job(%)', v_job_id; and hint: <programlisting> RAISE EXCEPTION 'Nonexistent ID --> %', user_id - USING HINT = 'Please check your user id'; + USING HINT = 'Please check your user ID'; </programlisting> </para> diff --git a/doc/src/sgml/spi.sgml b/doc/src/sgml/spi.sgml index 512c96f9bde..0d65c78b08b 100644 --- a/doc/src/sgml/spi.sgml +++ b/doc/src/sgml/spi.sgml @@ -1231,7 +1231,7 @@ Oid SPI_getargtypeid(SPIPlanPtr <parameter>plan</parameter>, int <parameter>argI <para> <function>SPI_getargtypeid</function> returns the OID representing the type - id for the <parameter>argIndex</parameter>'th argument of a plan prepared by + for the <parameter>argIndex</parameter>'th argument of a plan prepared by <function>SPI_prepare</function>. First argument is at index zero. </para> </refsect1> @@ -1263,7 +1263,7 @@ Oid SPI_getargtypeid(SPIPlanPtr <parameter>plan</parameter>, int <parameter>argI <refsect1> <title>Return Value</title> <para> - The type id of the argument at the given index. + The type OID of the argument at the given index. If the <parameter>plan</parameter> is <symbol>NULL</symbol> or invalid, or <parameter>argIndex</parameter> is less than 0 or not less than the number of arguments declared for the diff --git a/doc/src/sgml/storage.sgml b/doc/src/sgml/storage.sgml index 90c3e061b24..0a133bb7c7e 100644 --- a/doc/src/sgml/storage.sgml +++ b/doc/src/sgml/storage.sgml @@ -121,7 +121,7 @@ last started with</entry> <row> <entry><filename>postmaster.pid</></entry> - <entry>A lock file recording the current postmaster process id (PID), + <entry>A lock file recording the current postmaster process ID (PID), cluster data directory path, postmaster start timestamp, port number, |