Skip to content

Commit 94f7965

Browse files
plxclaude
andcommitted
Docs: remove em-dashes to match plx doc style
The existing docs use no em-dashes; the follow-up edits introduced four. Replace with a semicolon / parentheses per the house style. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 320cb57 commit 94f7965

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ version in `plx.control` (currently `1.0`).
1313
dialect-neutral engine (declared in the new `src/plx_engine.h`) plus per-dialect
1414
front ends in `src/plx_dialect_*.c` and the shared `src/plx_parse_brace.c`;
1515
the hardcoded `block_style` dispatch is replaced by a per-dialect `parse_body`
16-
function pointer. No functional change generated plpgsql is byte-identical
16+
function pointer. No functional change; generated plpgsql is byte-identical
1717
and all regression tests pass. Adding a dialect no longer touches shared code.
1818
- Follow-up to the above: relocated the dialect-neutral `plx_diag_prefix()`
1919
helper out of `src/plx_dialect_ruby.c` and back into the engine

doc/ARCHITECTURE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ supplies. The surface describes what varies between languages:
100100
The transpiler is split into a dialect-neutral **engine** and per-dialect
101101
**front ends**, selected through the `parse_body` function pointer on the
102102
surface (a vtable method). `plx_transpile()` just calls
103-
`cx->surf->parse_body(cx)` and then runs one assemble tail there is no
103+
`cx->surf->parse_body(cx)` and then runs one assemble tail; there is no
104104
per-dialect branching in the driver.
105105

106106
- The **engine** lives in `plx_transpile.c` and is declared to the front ends
@@ -144,8 +144,8 @@ src/plx_dialect_tsql.c the plxtsql surface + T-SQL front end
144144
Everything links into a single `plx.so`. A dialect is a `PlxSurface` (including
145145
its `parse_body` front end) plus small trampolines (validator, inline handler,
146146
and the shared call-handler binding), registered in `_PG_init`. Adding a dialect
147-
is a new `plx_dialect_X.c` a surface with its `parse_body`, plus a few
148-
`CREATE LANGUAGE` lines and does not touch the shared engine.
147+
is a new `plx_dialect_X.c` (a surface with its `parse_body`, plus a few
148+
`CREATE LANGUAGE` lines), and does not touch the shared engine.
149149

150150
## Trust
151151

0 commit comments

Comments
 (0)