Skip to content

Commit 08d668b

Browse files
docs: fix natural-language lint (end-to-end, built-in wording)
$Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
1 parent ea4a960 commit 08d668b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/docs/Modules/Process-PSModule/module-bootstrap.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ A brand-new module usually has a small **load-bearing core**: the piece(s) every
77
What counts as "load-bearing" follows the module's archetype from [Module types](../Module-Types.md):
88

99
- **Data modules** — the conversion pivot: `ConvertFrom-<Format>` / `ConvertTo-<Format>` (and whatever parser/serializer they wrap). Every other function (`Import-`, `Export-`, `Format-`, `Merge-`, ...) is built on top of this pivot and is meaningless without it.
10-
- **Integration (API) modules** — a [`Context`](https://github.com/PSModule/Context)-backed credential/config store, the client setup that uses it, and at least one API function that consumes the context end to end. Every other API function needs the same context and client to do anything.
10+
- **Integration (API) modules** — a [`Context`](https://github.com/PSModule/Context)-backed credential/config store, the client setup that uses it, and at least one API function that consumes the context end-to-end. Every other API function needs the same context and client to do anything.
1111

12-
Scope the integration branch to exactly that core, not to everything planned for v1. Keeping it to the minimum that "everyone needs" gets a usable release out faster, and lets independent follow-up functions be built in parallel — by different people or agents — as soon as the core is stable enough to build against, even before it merges.
12+
Scope the integration branch to exactly that core, not to everything planned for v1. Keeping it to the minimum that "everyone needs" gets a usable release out faster, and lets independent follow-up functions be developed in parallel — by different people or agents — as soon as the core is stable enough to build against, even before it merges.
1313

1414
## Pattern
1515

0 commit comments

Comments
 (0)