fix links with spaces
authorMichael Wallner <mike@php.net>
Wed, 8 Sep 2021 06:55:58 +0000 (08:55 +0200)
committerMichael Wallner <mike@php.net>
Wed, 8 Sep 2021 06:55:58 +0000 (08:55 +0200)
38 files changed:
pq.md
pq/Cancel/__construct.md
pq/Connection.md
pq/Connection/: Executing Queries.md
pq/Connection/__construct.md
pq/Connection/declareAsync.md
pq/Connection/exec.md
pq/Connection/execAsync.md
pq/Connection/execParams.md
pq/Connection/execParamsAsync.md
pq/Connection/getResult.md
pq/Connection/listenAsync.md
pq/Connection/notifyAsync.md
pq/Connection/poll.md
pq/Connection/prepareAsync.md
pq/Connection/resetAsync.md
pq/Connection/startTransactionAsync.md
pq/Connection/unlistenAsync.md
pq/Cursor/__construct.md
pq/Cursor/closeAsync.md
pq/Cursor/fetchAsync.md
pq/Cursor/moveAsync.md
pq/Cursor/openAsync.md
pq/Result.md
pq/Result/: Fetching Results.md
pq/Statement/__construct.md
pq/Statement/deallocateAsync.md
pq/Statement/descAsync.md
pq/Statement/execAsync.md
pq/Statement/prepareAsync.md
pq/Transaction/__construct.md
pq/Transaction/commitAsync.md
pq/Transaction/exportSnapshotAsync.md
pq/Transaction/importSnapshotAsync.md
pq/Transaction/rollbackAsync.md
pq/Transaction/savepointAsync.md
pq/Types.md
pq/Types/: Overview.md

diff --git a/pq.md b/pq.md
index 25ad2230c66c4e58845773996934918f419a2acb..a99cdf4c7ff7f555b5c3cbab8307b24841783826 100644 (file)
--- a/pq.md
+++ b/pq.md
@@ -6,8 +6,8 @@ This is a modern binding to the mature [libpq](http://www.postgresql.org/docs/cu
 
 ### Highlights:
 
-* Nearly 100% support for [asynchronous usage](pq/Connection/: Asynchronous Usage).
-* Extended [type support by pg_type](pq/Types/: Overview).
+* Nearly 100% support for [asynchronous usage](pq/Connection/:%20Asynchronous%20Usage).
+* Extended [type support by pg_type](pq/Types/:%20Overview).
 * Fetching simple [multi-dimensional array maps](pq/Result/map).
 * Working [Gateway implementation](https://bitbucket.org/m6w6/pq-gateway).
 
index 24fc5241ce33c6b97926d247f11b1c8759ef733d..aca9d325aaf4966ccd900d14da2155acf91f7e8c 100644 (file)
@@ -1,6 +1,6 @@
 # void pq\Cancel::__construct(pq\Connection $conn)
 
-Create a new cancellation request for an [asynchronous](pq/Connection/: Asynchronous Usage) query.
+Create a new cancellation request for an [asynchronous](pq/Connection/:%20Asynchronous%20Usage) query.
 
 ## Params:
 
index 262fea3b97a8f1d355af50d8a9425067c107d740..a9aa1251e28af87e441acc546d9695dd02aaa011 100644 (file)
@@ -2,14 +2,14 @@
 
 The connection to the PostgreSQL server.
 
-See the [General Usage](pq/Connection/: General Usage) page for an introduction on how to use this class.
+See the [General Usage](pq/Connection/:%20General%20Usage) page for an introduction on how to use this class.
 
 ## Constants:
 ### Connection Flags:
 * PERSISTENT  
 (Re-)open a persistent connection.
 * ASYNC  
-If the connection is not already open, perform the connection attempt [asynchronously](pq/Connection/: Asynchronous Usage).
+If the connection is not already open, perform the connection attempt [asynchronously](pq/Connection/:%20Asynchronous%20Usage).
 
 ### Connection Status:
 * OK  
@@ -68,7 +68,7 @@ If the connection is not already open, perform the connection attempt [asynchron
 * public (readonly) resource $socket  
   The server socket resource.
 * public (readonly) bool $busy  
-  Whether the connection is busy with [asynchronous operations](pq/Connection/: Asynchronous Usage).
+  Whether the connection is busy with [asynchronous operations](pq/Connection/:%20Asynchronous%20Usage).
 * public (readonly) string $errorMessage  
   Any error message on failure.
 * public (readonly) array $eventHandlers  
@@ -76,7 +76,7 @@ If the connection is not already open, perform the connection attempt [asynchron
 * public string $encoding = NULL  
   Connection character set.
 * public bool $unbuffered = FALSE  
-  Whether to fetch [asynchronous](pq/Connection/: Asynchronous Usage) results in unbuffered mode, i.e. each row generates a distinct pq\Result.
+  Whether to fetch [asynchronous](pq/Connection/:%20Asynchronous%20Usage) results in unbuffered mode, i.e. each row generates a distinct pq\Result.
 * public bool $nonblocking = FALSE  
   Whether to set the underlying socket nonblocking, useful for asynchronous handling of writes. See also pq\Connection::flush().
 
index 81a16e90df9dcf646295c2692df7a401d78a49ea..3e6ed6ebb4b177165b2293a880f6343bcf091700 100644 (file)
@@ -18,7 +18,7 @@ pq\Connection::exec() accepts a single argument, a ***query string***, containin
        $result = $c->exec("SELECT 1*s,2*s,3*s FROM generate_series(1,3) s");
        ?>
 
-An object of class pq\Result is returned on success. See [Fetching results](pq/Result/: Fetching Results) for details.
+An object of class pq\Result is returned on success. See [Fetching results](pq/Result/:%20Fetching%20Results) for details.
 
 > ***NOTE:***  
 > Only the last result will be returned, if the query string contains more than one SQL query.
@@ -30,13 +30,13 @@ pq\Connection::execParams() accepts a ***query string*** with a single SQL query
 
 The second argument is an ***array of parameters*** to execute the prepared statement with.
 
-If the third argument is present, an ***array with pg_type OIDs***, those types will be used for the parameters. See [Using types](pq/Types/: Overview) for details.
+If the third argument is present, an ***array with pg_type OIDs***, those types will be used for the parameters. See [Using types](pq/Types/:%20Overview) for details.
 
        <?php
        $result = $c->execParams("SELECT int($1) * s, int($2) * s, int($3) * s FROM generate_series(1,3) s", array(1,2,3));
        ?>
 
-An object of class pq\Result is returned on success. See [Fetching results](pq/Result/: Fetching Results) for details.
+An object of class pq\Result is returned on success. See [Fetching results](pq/Result/:%20Fetching%20Results) for details.
 
 
 ## Explicit prepare & execute of a named statement
@@ -45,7 +45,7 @@ pq\Connection::prepare() requires the ***statement name*** as string as first ar
 
 The second argument is a ***query string*** containing a single SQL query, which will be prepared on the server.
 
-If the third argument is present, an ***array with pg_type OIDs***, those types will be used for the parameters. See [Using types](pq/Types/: Overview) for details.
+If the third argument is present, an ***array with pg_type OIDs***, those types will be used for the parameters. See [Using types](pq/Types/:%20Overview) for details.
 
        <?php
        
index 7890c93d170f5e1dbb5435c52b4115dbc5c33717..7925e6fdc0104566cda555b74d474db84b65203c 100644 (file)
@@ -1,7 +1,7 @@
 # void pq\Connection::__construct([string $dsn = ""[, int $flags = 0]])
 
 Create a new PostgreSQL connection.
-See also [General Usage](pq/Connection/: General Usage).
+See also [General Usage](pq/Connection/:%20General%20Usage).
 
 ## Params:
 * Optional string $dsn = ""  
index af80b52e1685feb77d01c4fbea50cf122dac6c05..529758de955c512f7e87c3a8e81ed9910a8c3b43 100644 (file)
@@ -1,6 +1,6 @@
 # pq\Cursor pq\Connection::declareAsync(string $name, int $flags, string $query)
 
-[Asynchronously](pq/Connection/: Asynchronous Usage) declare a cursor for a query.
+[Asynchronously](pq/Connection/:%20Asynchronous%20Usage) declare a cursor for a query.
 
 > ***NOTE***:  
   If pq\Connection::$unbuffered is TRUE, each call to pq\Connection::getResult() will generate a distinct pq\Result containing exactly one row.
index 54f6dd92359b137472a63e7c5aef7e6906e802e9..0a2e26b895eaf24f1b4885ee8e0c9631954e4969 100644 (file)
@@ -1,6 +1,6 @@
 # pq\Result pq\Connection::exec(string $query)
 
-[Execute one or multiple SQL queries](pq/Connection/: Executing Queries) on the connection.
+[Execute one or multiple SQL queries](pq/Connection/:%20Executing%20Queries) on the connection.
 
 > ***NOTE:***  
 > Only the last result will be returned, if the query string contains more than one SQL query.
index a002319a3abde2cc2076218871d86cc362b97352..459e6cad9a168d4fdd1cc979d4fb798eca0483ec 100644 (file)
@@ -1,6 +1,6 @@
 # void pq\Connection::exec(string $query[, callable $callback])
 
-[Asynchronously](pq/Connection/: Asynchronous Usage) [execute an SQL query](pq/Connection: Executing Queries) on the connection.
+[Asynchronously](pq/Connection/:%20Asynchronous%20Usage) [execute an SQL query](pq/Connection:%20Executing%20Queries) on the connection.
 
 > ***NOTE***:  
   If pq\Connection::$unbuffered is TRUE, each call to pq\Connection::getResult() will generate a distinct pq\Result containing exactly one row.
index 9d457202a59777082cd4d92afb7d7d6042b71e60..1282b5a5205bb5673aacdba991f84383d4d3a4ed 100644 (file)
@@ -1,6 +1,6 @@
 # pq\Result pq\Connection::execParams(string $query, array $params[, array $types = NULL])
 
-[Execute an SQL query](pq/Connection: Executing Queries) with properly escaped parameters substituted.
+[Execute an SQL query](pq/Connection:%20Executing%20Queries) with properly escaped parameters substituted.
 
 ## Params:
 
index b633f237c0603bc398d0cc3c4c9cc8f3dcd4f0b6..c732b0986b2c97ccefd2dd924f35e04b7fa57292 100644 (file)
@@ -1,6 +1,6 @@
 # pq\Result pq\Connection::execParamsAsync(string $query, array $params[, array $types = NULL, [callable $cb = NULL]])
 
-[Asynchronously](pq/Connection/: Asynchronous Usage) [execute an SQL query](pq/Connection: Executing Queries) with properly escaped parameters substituted.
+[Asynchronously](pq/Connection/:%20Asynchronous%20Usage) [execute an SQL query](pq/Connection:%20Executing%20Queries) with properly escaped parameters substituted.
 
 > ***NOTE***:  
   If pq\Connection::$unbuffered is TRUE, each call to pq\Connection::getResult() will generate a distinct pq\Result containing exactly one row.
index afbf93e9bf6477dcd43288dd38bc29f372cca1a3..f2139a667a9782ad852fcf212a3d94d8e70b214d 100644 (file)
@@ -1,6 +1,6 @@
 # pq\Result pq\Connection::getResult()
 
-Fetch the result of an [asynchronous](pq/Connection/: Asynchronous Usage) query.
+Fetch the result of an [asynchronous](pq/Connection/:%20Asynchronous%20Usage) query.
 
 If the query hasn't finished yet, the call will block until the result is available.
 
index 3e63d233bf8a17273f2a621f56c0a557453702dc..75dbd03f272161c7abaf0bb0ee3c4f957bc22c62 100644 (file)
@@ -1,6 +1,6 @@
 # void pq\Connection::listenAsync(string $channel, callable $listener)
 
-[Asynchronously](pq/Connection/: Asynchronous Usage) start listening on $channel for notifcations.
+[Asynchronously](pq/Connection/:%20Asynchronous%20Usage) start listening on $channel for notifcations.
 See pq\Connection::listen().
 
 ## Params:
index 7ce1b788f822ab7b6e52ff73e0a7d9cbf12ff6fb..28f8e0e7335e2c5e31464c4d979ebdd4c081c230 100644 (file)
@@ -1,6 +1,6 @@
 # void pq\Connection::notifyAsync(string $channel, string $message)
 
-[Asynchronously](pq/Connection/: Asynchronous Usage) start notifying all listeners on $channel with $message.
+[Asynchronously](pq/Connection/:%20Asynchronous%20Usage) start notifying all listeners on $channel with $message.
 
 ## Params:
 
index 92e1ae1527d92c9dc8d6062bc416e76002a0f590..cf3c5963058cab6ee1548b68d8773a2f80b5d09d 100644 (file)
@@ -1,6 +1,6 @@
 # int pq\Connection::poll()
 
-Poll an [asynchronously](pq/Connection/: Asynchronous Usage) operating connection.
+Poll an [asynchronously](pq/Connection/:%20Asynchronous%20Usage) operating connection.
 See pq\Connection::resetAsync() for an usage example.
 
 ## Params:
index f74d0247571bc22b9d74603fddf56d26f60cbc4a..4d51d11a362ef22343e5a153f72295f859bbdf77 100644 (file)
@@ -1,6 +1,6 @@
 # pq\Statement pq\Connection::prepareAsync(string $name, string $query[, array $types = NULL])
 
-[Asynchronously](pq/Connection/: Asynchronous Usage) prepare a named statement for later execution with pq\Statement::exec().
+[Asynchronously](pq/Connection/:%20Asynchronous%20Usage) prepare a named statement for later execution with pq\Statement::exec().
 
 > ***NOTE***:  
   If pq\Connection::$unbuffered is TRUE, each call to pq\Connection::getResult() will generate a distinct pq\Result containing exactly one row.
index 8b1ff9976f14cc16aed38b3bc390713a909d10c5..2550edbf1877583f9f849c5ee2533940b18c18ed 100644 (file)
@@ -1,6 +1,6 @@
 # void pq\Connection::resetAsync()
 
-[Asynchronously](pq/Connection/: Asynchronous Usage) reset a possibly broken connection to a working state.
+[Asynchronously](pq/Connection/:%20Asynchronous%20Usage) reset a possibly broken connection to a working state.
 
 ## Params:
 
index 62f81321a3ea102e49cc0b88a801efac61df843c..5fd9c5498582b159bc53fce66d13be5f2ae5a148 100644 (file)
@@ -1,6 +1,6 @@
 # pq\Transaction pq\Connection::startTransactionAsync([int $isolation = pq\Transaction::READ_COMMITTED[, bool $readonly = FALSE[, bool $deferrable = FALSE]]])
 
-[Asynchronously](pq/Connection/: Asynchronous Usage) begin a transaction.
+[Asynchronously](pq/Connection/:%20Asynchronous%20Usage) begin a transaction.
 
 ## Params:
 
index f8ebfb1fa793ad068efb87ce893b4f5169bd7c14..c9e6449f95b5acc02d4af5b43e60c82e6b250c2d 100644 (file)
@@ -1,6 +1,6 @@
 # void pq\Connection::unlistenAsync(string $channel)
 
-[Asynchronously](pq/Connection/: Asynchronous Usage) stop listening for notifications on channel $channel.
+[Asynchronously](pq/Connection/:%20Asynchronous%20Usage) stop listening for notifications on channel $channel.
 See pq\Connection::unlisten() and pq\Connection::listenAsync().
 
 ## Params:
index a191dcc696d1b99eaddc1a6e8410ab990b25c95a..8bc7d8448c1d8c7cc7f0281aec4386809f860131 100644 (file)
@@ -14,7 +14,7 @@ See pq\Connection::declare().
 * string $query  
   The query for which the cursor should be opened.
 * bool $async  
-  Whether to declare the cursor [asynchronously](pq/Connection/: Asynchronous Usage).
+  Whether to declare the cursor [asynchronously](pq/Connection/:%20Asynchronous%20Usage).
 
 ## Throws:
 
index 47885210987e3d3002bc89481edff83dbe27253c..4332566db8e9764216db46177c49c56b1a04a305 100644 (file)
@@ -1,6 +1,6 @@
 # void pq\Cursor::closeAsync()
 
-[Asynchronously](pq/Connection/: Asynchronous Usage) close an open cursor.
+[Asynchronously](pq/Connection/:%20Asynchronous%20Usage) close an open cursor.
 See pq\Cursor::close().
 
 ## Params:
index 25c069c527bd1b48a29230e2c409cdb24a7fe765..3baa356050f7eb8381c3149b8be579aa4a22061a 100644 (file)
@@ -1,6 +1,6 @@
 # void pq\Cursor::fetchAsync([string $spec = "1"[, callable $callback = NULL]])
 
-[Asynchronously](pq/Connection/: Asynchronous Usage) fetch rows from the cursor.
+[Asynchronously](pq/Connection/:%20Asynchronous%20Usage) fetch rows from the cursor.
 See pq\Cursor::fetch().
 
 ## Params:
index b651cc3d7a46b8665e298241e4897587fff3bb7f..06c942643a57e3c3c0bc30eb2a992fee637d53de 100644 (file)
@@ -1,6 +1,6 @@
 # void pq\Cursor::moveAsync([string $spec = "1"])
 
-[Asynchronously](pq/Connection/: Asynchronous Usage) move the cursor.
+[Asynchronously](pq/Connection/:%20Asynchronous%20Usage) move the cursor.
 See pq\Cursor::move().
 
 ## Params:
index 9083f221fab53a096417c32668de75046f02de8f..19d1b23b0b185a06096ac95b034023405860ad94 100644 (file)
@@ -1,6 +1,6 @@
 # void pq\Cursor::openAsync()
 
-[Asynchronously](pq/Connection/: Asynchronous Usage) reopen a cursor.
+[Asynchronously](pq/Connection/:%20Asynchronous%20Usage) reopen a cursor.
 See pq\Cursor::open().
 
 ## Params:
index 50e3138581cbb52a100bb2b39c8a8ecd8620cd74..8d3405963334423449a6c3644f7181c94e433ffd 100644 (file)
@@ -2,7 +2,7 @@
 
 A query result.
 
-See [Fetching Results](pq/Result/: Fetching Results) for a general overview.
+See [Fetching Results](pq/Result/:%20Fetching%20Results) for a general overview.
 
 ## Constants:
 
index 15941e4453788da275f3e85c4a3243d1c289ab8f..28a2c8f39f94c57b57ad88906fe034e2ef0c1c42 100644 (file)
@@ -1,6 +1,6 @@
 # pq\Result: Overview
 
-An synchronous pq\Connection::exec*() call, or calls to pq\Connection::getResult() after using [asynchronous queries](pq/Connection/: Asynchronous Usage) returns an instance of pq\Result on success. See [Query execution](pq/Connection/: Executing Queries), optionally with [types](pq/Types/: Overview) and [Prepared Statements](pq/Statement) for details about how to execute queries.
+An synchronous pq\Connection::exec*() call, or calls to pq\Connection::getResult() after using [asynchronous queries](pq/Connection/:%20Asynchronous%20Usage) returns an instance of pq\Result on success. See [Query execution](pq/Connection/:%20Executing%20Queries), optionally with [types](pq/Types/:%20Overview) and [Prepared Statements](pq/Statement) for details about how to execute queries.
 
 ## Fetch types:
 
index 1d26cafc206d5602cdb828d27dc2d0d56417c78b..2e7116d43bc1132db93fb8b6ce5977b13d026adf 100644 (file)
@@ -14,7 +14,7 @@ See pq\Connection::prepare().
 * Optional array $types = NULL  
   A list of corresponding query parameter type OIDs.
 * Optional bool $async = FALSE  
-  Whether to prepare the statement [asynchronously](pq/Connection/: Asynchronous Usage).
+  Whether to prepare the statement [asynchronously](pq/Connection/:%20Asynchronous%20Usage).
 
 ## Throws:
 
index 44297a879edc915e2bad93c9a0cf1c89bae7eee7..336b3e283fcbafb47645f3a69dd51ec2295a4625 100644 (file)
@@ -1,6 +1,6 @@
 # void pq\Statement::deallocateAsync()
 
-[Asynchronously](pq/Connection/: Asynchronous Usage) free the server resources used by the
+[Asynchronously](pq/Connection/:%20Asynchronous%20Usage) free the server resources used by the
 prepared statement, so it can no longer be executed.
 
 ## Params:
index cbcf60569215172edaab55c309b21e5cb1943b0b..71d940c6aaae8fa2ac1bde3e16ba2d4a072a2ca7 100644 (file)
@@ -1,6 +1,6 @@
 # void pq\Statement::descAsync(callable $callback)
 
-[Asynchronously](pq/Connection/: Asynchronous Usage) describe the parameters of the prepared statement.
+[Asynchronously](pq/Connection/:%20Asynchronous%20Usage) describe the parameters of the prepared statement.
 
 ## Params:
 
index 33ead0c9ebc6bca947e4de3b5ef86f19f46c7c47..b40337a455f386efeff16e0ac5bb5fa910fd6fc0 100644 (file)
@@ -1,6 +1,6 @@
 # void pq\Statement::execAsync([array $params = NULL, [callable $cb = NULL]])
 
-[Asynchronously](pq/Connection/: Asynchronous Usage) execute the prepared statement.
+[Asynchronously](pq/Connection/:%20Asynchronous%20Usage) execute the prepared statement.
 
 ## Params:
 
index 59df1265c845228400742552e61af28cc209651f..a4323ee9d7efe10268bbae1c9e5d5ddfe3fb4568 100644 (file)
@@ -1,6 +1,6 @@
 # void pq\Statement::prepareAsync()
 
-[Asynchronously](pq/Connection/: Asynchronous Usage) re-prepare a statement that has been
+[Asynchronously](pq/Connection/:%20Asynchronous%20Usage) re-prepare a statement that has been
 deallocated. This is a no-op on already open statements.
 
 ## Params:
index 8a2dfcd13b9b5903e48df1745232203571f2d038..83e35fb93029f2e8c1b8ae63d5e624727f21e916 100644 (file)
@@ -8,7 +8,7 @@ See pq\Connection::startTransaction().
 * pq\Connection $conn  
   The connection to start the transaction on.
 * Optional bool $async = FALSE  
-  Whether to start the transaction [asynchronously](pq/Connection/: Asynchronous Usage).
+  Whether to start the transaction [asynchronously](pq/Connection/:%20Asynchronous%20Usage).
 * Optional int $isolation = pq\Transaction::READ_COMMITTED  
   The transaction isolation level (defaults to pq\Connection::$defaultTransactionIsolation).
 * Optional bool $readonly = FALSE  
index 75d8f694f24b9e950cb356d0695ffd9a45ff6f32..c0266328a907f6f0c4d100b56b69ecbc125fda89 100644 (file)
@@ -1,6 +1,6 @@
 # void pq\Transaction::commitAsync()
 
-[Asynchronously](pq/Connection/: Asynchronous Usage) commit the transaction or release the previous savepoint.
+[Asynchronously](pq/Connection/:%20Asynchronous%20Usage) commit the transaction or release the previous savepoint.
 See pq\Transaction::commit() and pq\Transaction::savepoint().
 
 ## Params:
index 3152d2c7e2cbd3ff87cd791694463f06c9589c98..e91f6d2072fd8e8e5b37eb0dc6759b7355db84b9 100644 (file)
@@ -1,6 +1,6 @@
 # void pq\Transaction::exportSnapshotAsync()
 
-[Asynchronously](pq/Connection/: Asynchronous Usage) export a snapshot for transaction synchronization.
+[Asynchronously](pq/Connection/:%20Asynchronous%20Usage) export a snapshot for transaction synchronization.
 See pq\Transaction::exportSnapshot().
 
 ## Params:
index c62e1b35006527a25f06b28539f9174279fee4b5..6deffbd1a91815ba55de897cb9119b426b8595eb 100644 (file)
@@ -1,6 +1,6 @@
 # void pq\Transaction::importSnapshotAsync(string $snapshot_id)
 
-[Asynchronously](pq/Connection/: Asynchronous Usage) import a snapshot from another transaction to synchronize with.
+[Asynchronously](pq/Connection/:%20Asynchronous%20Usage) import a snapshot from another transaction to synchronize with.
 See pq\Transaction::importSnapshot().
 
 > ***NOTE:***  
index cba1d4bf317ccd259df32afd9ce2060dad21893f..feb3b982e59e59c52e2c94319ce542532b2ac23a 100644 (file)
@@ -1,6 +1,6 @@
 # void pq\Transaction::rollbackAsync()
 
-[Asynchronously](pq/Connection/: Asynchronous Usage) rollback the transaction or to the previous savepoint within this transaction.
+[Asynchronously](pq/Connection/:%20Asynchronous%20Usage) rollback the transaction or to the previous savepoint within this transaction.
 See pq\Transaction::rollback() and pq\Transaction::savepoint().
 
 ## Params:
index 8c45122e4383760aa42e7a38c0a1898fc9bb08b9..aba13c4768f3c2f86bc5a9489dbcf47c5310b932 100644 (file)
@@ -1,6 +1,6 @@
 # void pq\Transaction::savepointAsync()
 
-[Asynchronously](pq/Connection/: Asynchronous Usage) create a `SAVEPOINT` within this transaction.
+[Asynchronously](pq/Connection/:%20Asynchronous%20Usage) create a `SAVEPOINT` within this transaction.
 See pq\Transaction::savepoint().
 
 ## Params:
index 55642258a89d73ce79dca939693fd5da9fd66ab3..90d777e02a7d5415f58302ad5ed7a0e76a213670 100644 (file)
@@ -1,7 +1,7 @@
 # class pq\Types implements ArrayAccess
 
 Accessor to the PostgreSQL `pg_type` relation.
-See [here for an overview](pq/Types/: Overview).
+See [here for an overview](pq/Types/:%20Overview).
 
 ## Example:
 
index 023704d6b9f8266bc54c923d007d7b022472f59d..bb41e4d2160590ce6a816fa0655b4e8569fe3062 100644 (file)
@@ -26,7 +26,7 @@ The types are standard objects indexed by OID and by name and accessible by arra
 > ***NOTE:***  
   The pg_type relation fields have a ``typ`` prefix.
 
-## Usage when [executing queries](pq/Connection/: Executing Queries)
+## Usage when [executing queries](pq/Connection/:%20Executing%20Queries)
 
 
        <?php