From 9b5fa512efd763b08fe7c674c3484ad5eff48d2e Mon Sep 17 00:00:00 2001 From: Pere Orga Date: Fri, 31 Jan 2025 01:04:38 +0100 Subject: [PATCH] pg-pconnect: fix typos --- reference/pgsql/functions/pg-pconnect.xml | 28 +++++++++++------------ 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/reference/pgsql/functions/pg-pconnect.xml b/reference/pgsql/functions/pg-pconnect.xml index 74b26d466688..058b2bec58ef 100644 --- a/reference/pgsql/functions/pg-pconnect.xml +++ b/reference/pgsql/functions/pg-pconnect.xml @@ -16,7 +16,7 @@ pg_pconnect opens a connection to a - PostgreSQL database. It returns an PgSql\Connection instance that is + PostgreSQL database. It returns a PgSql\Connection instance that is needed by other PostgreSQL functions. @@ -27,11 +27,11 @@ flags. - To enable persistent connection, the pgsql.allow_persistent - &php.ini; directive must be set to "On" (which is the default). - The maximum number of persistent connection can be defined with the pgsql.max_persistent - &php.ini; directive (defaults to -1 for no limit). The total number - of connections can be set with the pgsql.max_links + To enable persistent connections, the pgsql.allow_persistent + &php.ini; directive must be set to "On" (which is the default). + The maximum number of persistent connections can be defined with the pgsql.max_persistent + &php.ini; directive (defaults to -1 for no limit). The total number + of connections can be set with the pgsql.max_links &php.ini; directive. @@ -54,7 +54,7 @@ the equal sign are optional. To write an empty value or a value containing spaces, surround it with single quotes, e.g., keyword = 'a value'. Single quotes and backslashes within the value must be - escaped with a backslash, i.e., \' and \\. + escaped with a backslash, i.e., \' and \\. The currently recognized parameter keywords are: @@ -63,7 +63,7 @@ password, connect_timeout, options, tty (ignored), sslmode, requiressl (deprecated in favor of sslmode), and - service. Which of these arguments exist depends + service. Which of these arguments exist depends on your PostgreSQL version. @@ -85,7 +85,7 @@ &reftitle.returnvalues; - Returns an PgSql\Connection instance on success, &return.falseforfailure;. + Returns a PgSql\Connection instance on success, &return.falseforfailure;. @@ -103,7 +103,7 @@ 8.1.0 - Returns an PgSql\Connection instance now; + Returns a PgSql\Connection instance now; previously, a &resource; was returned. @@ -120,18 +120,18 @@ ]]>