Skip to content
Merged
4 changes: 2 additions & 2 deletions docs/lading-design.md
Original file line number Diff line number Diff line change
Expand Up @@ -710,8 +710,8 @@ with scoped(allowlist=LADING_CATALOGUE.allowlist):
- Unit tests verify catalogue construction, program registration, and
`UnknownProgramError` handling for unregistered programs.
- Behaviour-driven development (BDD) scenarios document the expected behaviour
for downstream consumers,
including command construction within scoped contexts.
for downstream consumers, including command construction within scoped
contexts.

### 7.4. Compatibility with cmd-mox

Expand Down
8 changes: 4 additions & 4 deletions docs/scripting-standards.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ as a default.
`#!/usr/bin/env -S uv run python` followed by the metadata block shown in the
example below.
- External processes are invoked via
[`cuprum`](https://github.com/leynos/cuprum/)
to provide typed, allowlist-based command execution rather than ad‑hoc shell
strings. Cuprum's catalogue system ensures only registered programs can be
executed, preventing accidental shell access.
[`cuprum`](https://github.com/leynos/cuprum/) to provide typed,
allowlist-based command execution rather than ad‑hoc shell strings. Cuprum's
catalogue system ensures only registered programs can be executed, preventing
accidental shell access.
- File‑system interactions use `pathlib.Path`. Higher‑level operations (for
example, copying or removing trees) go through the `shutil` standard library
module.
Expand Down
10 changes: 5 additions & 5 deletions docs/users-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,11 @@ stderr_tail_lines = 40

### `[publish]`

| Key | Type | Default | Meaning |
| --------------- | ------------------------------------- | ------------- | --------------------------------------------------------------------------- |
| `exclude` | array of strings | `[]` | Crate names to exclude from publication. |
| `order` | array of strings | `[]` | Explicit publish order; overrides dependency-derived ordering when present. |
| `strip_patches` | `"all"` \| `"per-crate"` \| `false` | `"per-crate"` | How to edit `[patch.crates-io]` in the staged workspace before packaging. |
| Key | Type | Default | Meaning |
| --------------- | -------------------------------------- | ------------- | --------------------------------------------------------------------------- |
| `exclude` | array of strings | `[]` | Crate names to exclude from publication. |
| `order` | array of strings | `[]` | Explicit publish order; overrides dependency-derived ordering when present. |
| `strip_patches` | one of `"all"`, `"per-crate"`, `false` | `"per-crate"` | How to edit `[patch.crates-io]` in the staged workspace before packaging. |

### `[preflight]`

Expand Down
Loading