Skip to content

Commit 6dedc5d

Browse files
committed
docs: drop em-dashes from README
1 parent 832f454 commit 6dedc5d

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ sensitive information**. Trino error messages embed literal values from
136136
the failing query (`Cannot cast '2024-foo' as DATE`). Trace-level logs
137137
contain the query text itself, which may include identifiers or
138138
literals. Treat the gateway's stdout/stderr with the same operational
139-
sensitivity as Trino's own server log restrict access, avoid
139+
sensitivity as Trino's own server log: restrict access, avoid
140140
forwarding it to general-purpose log aggregators without scrubbing,
141141
and review your log retention policy if your queries reference PII.
142142

@@ -176,7 +176,7 @@ forwarded:
176176

177177
The PostgreSQL frontend/backend protocol supports two wire encodings for
178178
column values: **text** and **binary**. Both are negotiated per column
179-
on each query the client tells the server which format it wants for
179+
on each query: the client tells the server which format it wants for
180180
each result column, and the server obliges. Text format renders every
181181
value as its canonical PostgreSQL string representation (e.g. `42`,
182182
`true`, `2026-04-30`); binary format uses a compact, type-specific byte
@@ -222,22 +222,22 @@ The repo has three kinds of tests, in increasing fidelity:
222222
(`tests/psql_integration_test.rs`).** Drive the gateway by
223223
spawning the real `psql` command-line client (libpq) as a
224224
subprocess. Catches client-specific issues that an embedded driver
225-
wouldn't surface startup negotiation, notice handling, the
225+
wouldn't surface: startup negotiation, notice handling, the
226226
simple-query-with-CommandComplete flow. Slower per case
227227
(subprocess overhead) so kept to a focused subset, not a full
228228
mirror of (2). Skipped automatically if `psql` isn't on `PATH` or
229229
`TRINO_HOST` is unset.
230230

231231
```bash
232-
# Unit tests only no Trino required.
232+
# Unit tests only, no Trino required.
233233
cargo test --lib
234234

235235
# All gates a PR must pass.
236236
cargo clippy --all-targets -- -D warnings # lint
237237
cargo fmt --check # format
238238
reuse lint # license metadata
239239

240-
# Read-only Trino integration (covers both client suites tokio-postgres
240+
# Read-only Trino integration (covers both client suites; tokio-postgres
241241
# tests in (2) auto-skip without TRINO_HOST; psql tests in (3) auto-skip
242242
# without TRINO_HOST and without `psql` on PATH).
243243
TRINO_HOST=... TRINO_PORT=... TRINO_SSL=true TRINO_TLS_NO_VERIFY=true \

0 commit comments

Comments
 (0)