From 37a1349da1943db3c421e292d59f1672cee2221f Mon Sep 17 00:00:00 2001 From: "Joshua (D) Drake" <136637981+ChronicallyJD@users.noreply.github.com> Date: Mon, 6 Jul 2026 09:38:12 -0600 Subject: [PATCH] Remove em dashes from docs, per the project style rule Replace the em dashes in the new transform/pg_raise prose with commas and a semicolon; documentation uses no em dashes. Co-Authored-By: Claude Opus 4.8 (1M context) --- CHANGELOG.md | 2 +- doc/plphp.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 784b5e3..49949cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,7 +27,7 @@ and the project aims to follow [Semantic Versioning](https://semver.org/). - **Transforms reach nested contexts.** A declared `jsonb`/`hstore` transform now also applies to values of that type inside composite argument/result fields, `RETURNS SETOF`/`return_next` rows, and a trigger's `$_TD` rows - (including the `'MODIFY'` return) — not only as top-level arguments and + (including the `'MODIFY'` return), not only as top-level arguments and results. Rows read back through SPI are still left in text form. - **Structured `pg_raise`.** `pg_raise(level, message [, detail [, hint [, sqlstate]]])` now attaches `DETAIL`, `HINT` and (for `ERROR`) a custom diff --git a/doc/plphp.md b/doc/plphp.md index f24e4d6..2c897a9 100644 --- a/doc/plphp.md +++ b/doc/plphp.md @@ -177,7 +177,7 @@ converts values of that type **inside**: `'MODIFY'`). Rows read back through SPI (`spi_exec` / `spi_fetch_row` / cursors) are **not** -transformed — like a value crossing the boundary without a `TRANSFORM` clause, +transformed; like a value crossing the boundary without a `TRANSFORM` clause, they arrive in their text form. ### Domains @@ -519,7 +519,7 @@ the PostgreSQL log. `pg_raise(level, message [, detail [, hint [, sqlstate]]])` accepts `notice`, `warning`, or `error`, and optionally attaches a `DETAIL`, a `HINT`, and (for -`error`) a custom five-character `SQLSTATE` — the equivalent of PL/pgSQL's +`error`) a custom five-character `SQLSTATE`, the equivalent of PL/pgSQL's `RAISE ... USING`: ```php