diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 4a3a4578a..a476052c7 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -127,7 +127,7 @@ jobs: with: node-version: 18 - - name: Build Antora Docs + - name: "Docs: build site" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | @@ -146,7 +146,7 @@ jobs: exit 1 fi - - name: Create Antora Docs Artifact + - name: "Docs: upload site artifact" uses: actions/upload-artifact@v4 with: name: antora-docs @@ -156,20 +156,20 @@ jobs: # Individual check steps below stay non-blocking (continue-on-error: true): they # print each tool's raw findings for review. Enforcement is done by the # no-new-violations comparator, which diffs a fresh run against baseline.json. - # At Phase-4 exit the gated rules are A1/A6/A7/B2/D2/ANCHOR + MrDocs-no-warnings + - # C2/C4/C9/C10: the blocking gate step below runs the comparator with --strict - # --gate and IS blocking (continue-on-error: false) — it fails the job on any NEW - # A1/A6/A7/B2/D2/ANCHOR violation, any NEW MrDocs reference-surface warning, or any NEW - # C2/C4/C9/C10 wording violation on either surface. E4 (a11y contrast) is Review - # tier, not gated (doc/STYLE_GUIDE.md Part F.0); the a11y scan below stays a - # non-blocking report. All other rules remain warning-only via the non-blocking - # "no-new-violations report" step. + # The gated rules are A1/A6/A7/B2/D2/ANCHOR + MrDocs-no-warnings + C2/C4/C9/C10. + # The gate step below names them via --gate and REPORTS them: it prints each with + # file, line and an excerpt, and annotates it on the diff, but runs without + # --strict, so it does not fail the job. It keeps continue-on-error: false so a + # crash in the comparator itself still surfaces. Re-blocking is adding --strict + # back to that one step. E4 (a11y contrast) is Review tier, not gated + # (doc/STYLE_GUIDE.md Part F.0). Everything outside the gated slice is reported by + # the "Lint: remaining backlog" step. # The accuracy gate for .adoc example code (B2/B3/D2 correctness) is separate and # stays a hard gate: the boost_capy_doc_tests b2 target defined in # test/doc/Jamfile, run via `./b2 libs/capy/test` in ci.yml, not this job # (test/doc/CMakeLists.txt defines the equivalent CMake target). - - name: Install Vale + - name: "Lint: install Vale" if: always() continue-on-error: true run: | @@ -179,51 +179,86 @@ jobs: echo "$RUNNER_TEMP/vale-bin" >> "$GITHUB_PATH" echo "$(pwd)/boost-root/libs/capy/doc/node_modules/.bin" >> "$GITHUB_PATH" - - name: Doc-quality - Vale sync (Google style package) + - name: "Lint: sync Vale styles" if: always() continue-on-error: true working-directory: boost-root/libs/capy/doc run: vale sync - - name: Doc-quality - Vale over .adoc pages + - name: "Lint: Vale over pages" if: always() continue-on-error: true working-directory: boost-root/libs/capy/doc - run: vale modules + # Vale's exit codes: 0 = no alerts, 1 = alerts found, 2 = fatal (e.g. + # asciidoctor off PATH). 1 is the normal state on this corpus and fires + # every run, which surfaced as a red "Process completed with exit code 1" + # annotation saying nothing -- the alerts themselves are reported, with + # file, line and quote, by the no-new-violations steps below. Treat 1 as + # success so only a genuine Vale failure annotates. + run: | + vale modules; s=$? + [ "$s" -le 1 ] || exit "$s" - - name: Doc-quality - extract + Vale over header docstrings + - name: "Lint: Vale over docstrings" if: always() continue-on-error: true working-directory: boost-root/libs/capy/doc + # Vale's exit codes: 0 = no alerts, 1 = alerts found, 2 = fatal (e.g. + # asciidoctor off PATH). 1 is the normal state on this corpus and fires + # every run, which surfaced as a red "Process completed with exit code 1" + # annotation saying nothing -- the alerts themselves are reported, with + # file, line and quote, by the no-new-violations steps below. Treat 1 as + # success so only a genuine Vale failure annotates. run: | node lint/extract-docstrings.mjs - vale lint/.docstrings + vale lint/.docstrings; s=$? + [ "$s" -le 1 ] || exit "$s" - - name: Doc-quality - structural lint (doc-lint.mjs) + - name: "Lint: structure (doc-lint.mjs)" if: always() continue-on-error: true working-directory: boost-root/libs/capy/doc run: node lint/doc-lint.mjs - - name: Doc-quality - accessibility contrast scan (pa11y-ci) + - name: "Lint: accessibility (pa11y-ci)" if: always() continue-on-error: true working-directory: boost-root/libs/capy/doc run: node lint/run-a11y.mjs - - name: Doc-quality - MrDocs no-warnings scan + - name: "Lint: reference warnings (MrDocs)" if: always() continue-on-error: true working-directory: boost-root/libs/capy/doc run: node lint/mrdocs-warnings.mjs - - name: Doc-quality - no-new-violations report (all rules, non-blocking) + # selftest.mjs mutates the linters and asserts they notice. It is the only + # thing standing between a silent linter regression and a green run — most + # of the gates here (A1's value whitelist, A7's numeral match, B2's block + # walk, the role=output exemption boundary) were fail-open at some point + # and were only found by planting a violation. SHAPE in particular is + # advisory and reads 0, so a broken looksLikeCode() is invisible everywhere + # else. Non-blocking for now: it is a meta-test, and it can go red for + # reasons unrelated to the documentation (a refactor of the linters + # themselves). Promote to blocking once it has proven quiet. + - name: "Lint: linter self-test" if: always() continue-on-error: true working-directory: boost-root/libs/capy/doc - run: node lint/check-no-new-violations.mjs + run: node lint/selftest.mjs + + # The remaining backlog, as warnings: every finding present RIGHT NOW that + # baseline.json grandfathers. Not the baseline file's contents — the + # baseline is only reseeded when something is ADDED, so it accumulates dead + # clauses for findings already fixed. This prints the live intersection, + # which is the actual worklist. + - name: "Lint: remaining backlog" + if: always() + continue-on-error: true + working-directory: boost-root/libs/capy/doc + run: node lint/check-no-new-violations.mjs --show-baseline - # BLOCKING Phase-4 gate: fails the job on any NEW A1/A6/A7/B2/D2/ANCHOR violation, any + # The gate: reports any NEW A1/A6/A7/B2/D2/ANCHOR violation, any # NEW MrDocs reference-surface warning, and — promoted at Phase-4 exit — any NEW # C2/C4/C9/C10 wording violation on EITHER surface. A1/A6/B2/D2 are doc_lint # fingerprints; A7 is the Vale rule Capy.PartHeadings; MrDocs-no-warnings gates @@ -258,35 +293,26 @@ jobs: # Fingerprint-shape contract: doc/lint/README.md. Never promote a rule here on the # strength of a green run — plant a violation and watch this step fail first. # - # !!! THIS STEP IS RED TODAY, ON PURPOSE, AND THE FIX IS A POST-MERGE RESEED. - # `sentence_length` has NO entry in the committed baseline.json (the check was - # added after that snapshot was taken), so nothing in its slice is grandfathered - # and `--gate 'sentence_length:^C2:'` exits 1 on the whole hard slice. That slice - # is exactly TWO findings, both in include/boost/capy/when_any.hpp - # (lint/.docstrings/when_any.hpp.adoc), a 27-word and a 31-word sentence of the - # form "If at least one child await-returned a zero `ec`, the result holds …, - # unless producing the winner's payload threw, in which case that exception is - # rethrown." They are ACCEPTED REFUSALS, not defects: a Phase-4 rewrite that split - # them made a false claim against the code and was reverted verbatim, and the - # maintainer's content review carries that text. Zero .adoc fingerprints remain - # under `^C2:`. - # The maintainer chose visible debt over new machinery: the in-source - # refusal-marker option was declined. Do NOT add a suppression mechanism and do - # NOT reseed baseline.json locally (a local run grandfathers ~357 local-vs-CI - # drift fingerprints). The fix is the `workflow_dispatch` reseed at the end of this - # job, run AFTER merge, per doc/lint/README.md. + # `sentence_length` was added after the previous baseline snapshot, so nothing in + # its slice was grandfathered and every finding read as new. The 2026-08-25 reseed + # took a snapshot that includes it: 65 fingerprints, 7 C2 and 58 advisory-C2. The + # 7 are PR #383's, accepted as backlog by maintainer decision. + # + # Do NOT add a suppression mechanism, and do NOT reseed baseline.json locally — a + # local run grandfathers hundreds of local-vs-CI drift fingerprints. Reseed via the + # `workflow_dispatch` steps at the end of this job, per doc/lint/README.md. # By contrast the C4/C9/C10 gates (both surfaces) are GREEN today with no reseed # needed: their three residual .adoc findings sit inside two verbatim third-party # quoted passages and are already grandfathered by baseline.json. - - name: Doc-quality - Phase-4 gate (A1/A6/A7/B2/D2/ANCHOR + MrDocs + C2/C4/C9/C10, blocking) + - name: "Lint: gate (new violations)" if: always() continue-on-error: false working-directory: boost-root/libs/capy/doc run: | - # Expected state until the post-merge reseed: EXIT 1 with exactly two gated - # findings, both C2:lint/.docstrings/when_any.hpp.adoc (see the note above). - # Any OTHER gated finding is a real regression. - node lint/check-no-new-violations.mjs --strict \ + # Reports gated findings and annotates them on the diff; does NOT fail the + # job (no --strict). The two when_any.hpp C2 refusals this once expected are + # gone — resolved before #383 — and the live gated findings are #383's own. + node lint/check-no-new-violations.mjs \ --gate 'doc_lint:^(A1|A6|B2|D2|ANCHOR):' \ --gate 'vale_adoc:Capy\.PartHeadings$' \ --gate 'mrdocs_warnings:.*' \ @@ -325,7 +351,7 @@ jobs: # The job never commits or pushes. It uploads a candidate for review; a # human reads the diff and commits it. Maintainer procedure, including how # to read the report and when NOT to reseed: doc/lint/README.md. - - name: Baseline reseed - regenerate a candidate in the CI environment + - name: "Reseed: generate candidate" if: always() && github.event_name == 'workflow_dispatch' working-directory: boost-root/libs/capy/doc run: | @@ -350,7 +376,7 @@ jobs: # reformatted the blocking step's arguments), the step FAILS rather than # reporting against an empty gate spec, which would look identical to "no # gated additions." - - name: Baseline reseed - report what the candidate would change + - name: "Reseed: report changes" if: always() && github.event_name == 'workflow_dispatch' working-directory: boost-root/libs/capy/doc run: | @@ -370,7 +396,7 @@ jobs: while IFS= read -r spec; do gate_args+=(--gate "$spec") done < <( - awk '/check-no-new-violations\.mjs --strict/ { inblock = 1 } + awk '/name: "Lint: gate/ { inblock = 1 } inblock && /^[[:space:]]*$/ { exit } inblock' "$workflow" \ | grep -o -- "--gate '[^']*'" \ @@ -405,7 +431,7 @@ jobs: } >> "$GITHUB_STEP_SUMMARY" exit "$status" - - name: Baseline reseed - upload the candidate for review + - name: "Reseed: upload candidate" if: always() && github.event_name == 'workflow_dispatch' uses: actions/upload-artifact@v4 with: diff --git a/doc/.vale/styles/config/vocabularies/Capy/accept.txt b/doc/.vale/styles/config/vocabularies/Capy/accept.txt index 7d6138ed0..8619f6fe6 100644 --- a/doc/.vale/styles/config/vocabularies/Capy/accept.txt +++ b/doc/.vale/styles/config/vocabularies/Capy/accept.txt @@ -15,9 +15,13 @@ # new casing rule. Possessives ("Capy's") are handled by Vale; plurals are not, so # inflections are spelled out. # -# ONLY genuine prose words and proper nouns belong here. A bare C++ identifier -# sitting unbackticked in running prose is a real defect (style guide B1) and must -# stay visible as a Vale.Spelling alert — do not add one to silence it. +# ONLY genuine prose words, proper nouns and language keywords belong here. A bare +# capy or std SYMBOL sitting unbackticked in running prose is a real defect (style +# guide B1) — it has a generated reference page and should be a `cpp:` link — and it +# must stay visible as a Vale.Spelling alert. Do not add one to silence it. +# +# Keywords are the deliberate exception: `co_await` has no reference page, so B1 +# offers nothing to link it to and the alert cannot be actioned. # --- Projects, libraries, tools, publishers ------------------------------------- (?i)capy @@ -86,11 +90,21 @@ (?i)io_uring (?i)iovec (?i)syscalls? +(?i)datagrams? +(?i)wakeups? +(?i)fd +(?i)tcp (?i)apis? (?i)abis? (?i)cpus? # --- C++ terms used adjectivally or nominally in running prose ------------------ +# +# Language keywords belong here, and several already did (const, nullptr, nothrow, +# enum, bool). The line against bare identifiers below is about SYMBOLS: `io_result` +# has a generated reference page, so leaving it unlinked in prose is a real missed +# `cpp:` link (style guide B1). A keyword has no page and nothing to link to, so B1 +# offers no remedy and the alert can never be actioned -- it is noise, not a signal. (?i)const (?i)constness (?i)nullptr @@ -100,6 +114,11 @@ (?i)boolean (?i)lvalues? (?i)rvalues? +(?i)prvalues? +(?i)co_await +(?i)co_yield +(?i)co_return +(?i)thread_local (?i)variadic (?i)templated (?i)invocable @@ -142,7 +161,8 @@ (?i)dequeue[sd]? (?i)enqueue[sd]? (?i)dereferences? -(?i)destructuring +(?i)destructur(e|es|ed|ing) +(?i)co_awaited (?i)disambiguates? (?i)deregisters? (?i)unregisters? diff --git a/doc/STYLE_GUIDE.md b/doc/STYLE_GUIDE.md index fbf3cfa15..e0eb5dd1e 100644 --- a/doc/STYLE_GUIDE.md +++ b/doc/STYLE_GUIDE.md @@ -200,7 +200,14 @@ it only in the sense the row names. **scheduler** is approved only in its P2300 - **E4.** The theme passes a contrast check in both light and dark mode. *(Review tier: the gated failures were all `color-contrast` on shared Antora theme nav chrome — an external UI bundle Capy cannot fix, the same rationale that demoted E2; scan runs non-blocking, verify by - eye, do not gate.)* + eye, do not gate.)* The same reasoning covers the other rule classes the scan reports, checked + against the built HTML at the 2026-08-25 reseed: `link-name` is Asciidoctor's empty + `` before every section heading, `link-in-text-block` is the MrDocs reference + title's auto-linked namespace segment, and `scrollable-region-focusable` is the `ui-bundle` + stylesheet putting `overflow-x:auto` on `.listingblock pre` without a `tabindex`. All three are + generator or theme output, not authored content, so they are grandfathered on the same terms — + **but only for those shapes.** An a11y finding on markup Capy actually writes is a defect and + this carve-out does not reach it. ## Part F — Enforcement (makes this guide checkable) diff --git a/doc/lint/README.md b/doc/lint/README.md index 637df263f..1c022a726 100644 --- a/doc/lint/README.md +++ b/doc/lint/README.md @@ -22,11 +22,20 @@ site build. Node built-ins only, no dependencies of their own. | `mrdocs-warnings.mjs` | Runs the pinned MrDocs 0.8.0 directly and parses its reference-surface warnings. | | `run-a11y.mjs` | pa11y-ci contrast/a11y scan over the built site (`doc/build/site`). | | `baseline.mjs` | Runs every check and snapshots their findings to `baseline.json`. | -| `check-no-new-violations.mjs` | **The gate.** Diffs a fresh run against `baseline.json` and fails on NEW findings. | +| `check-no-new-violations.mjs` | **The gate.** Diffs a fresh run against `baseline.json` and fails on NEW findings. Prints a human report; `--show-baseline` adds the remaining backlog, `--json` restores the machine dump. | | `baseline-diff.mjs` | Explains what replacing `baseline.json` with a candidate would change. | ## How the gate works +**The gate reports; it does not block.** The Documentation job's gate step runs without +`--strict`, so it exits 0 and the workflow stays green. Gated findings are still identified, +listed, and emitted as `::warning` annotations on the diff — they are simply not fatal. That is +a maintainer decision, taken deliberately, and it has a cost worth stating: a new gated +violation can now be introduced and will sit in the report until a reseed grandfathers it, +which is the mechanism behind the existing backlog. Restoring the block is adding `--strict` +back to that one step; the machinery is unchanged and `--strict` is still honoured. + + `baseline.json` is a snapshot of every finding that already existed when it was taken. `check-no-new-violations.mjs` runs a fresh scan and reports only fingerprints that are **not** in the snapshot. Everything in the snapshot is grandfathered. @@ -49,6 +58,45 @@ text above a finding does not rename it. It sits mid-key on purpose: the gate sp `vale_adoc:Capy\.PartHeadings$` is anchored on the tail, and anything appended after the check name would make that gate match nothing while still exiting 0. +## Reading the output + +The gate prints one entry per finding — location, rule, message, and a quote: + +``` +ERROR include/boost/capy/concept/io_awaitable.hpp:68 + [sentence_length C2] sentence over 25 words (30) + "_Effects_: If this operations instructs a coroutine to be resumed, i ... anner specific to `A`." +``` + +Three things make that possible, and each has a constraint worth knowing: + +- **Line numbers are not in the fingerprint** (see above), so they are carried separately. + `baseline.mjs --details` emits a `details` map keyed by the same fingerprint, holding + `{file, line, excerpt}`. The comparator always passes `--details`; the reseed never does, + so a committed `baseline.json` still contains no line numbers and cannot churn. +- **Docstring findings are reported against the header, not the generated corpus.** A finding + in `lint/.docstrings/concept/io_awaitable.hpp.adoc` is unactionable — nobody edits that file. + `extract-docstrings.mjs` writes a `.adoc.lines.json` sidecar mapping output-line ranges + back to the line in the `.hpp` where each doc comment starts, and the reporter refines within + the block by locating the excerpt in the header text. The sidecar is written *beside* the + `.adoc`, never into it, so the extracted prose stays byte-identical. +- **Under GitHub Actions** each blocking finding is additionally emitted as a + `::warning file=…,line=…::` annotation, so it lands on the diff. A warning rather than an + error on purpose: the annotation locates the finding, the check status is what reports the + failure, and a red inline marker on a prose nit reads as broken code. + +Two modes: + +| Invocation | Shows | +|---|---| +| default | New findings only. With `--gate`, the gated ones are `ERROR` (they block) and the rest are summarised as a count. | +| `--show-baseline` | Adds every grandfathered finding **still present** as `WARN` — the live backlog. | + +`--show-baseline` deliberately prints the intersection of the current scan with the baseline, +not the baseline file. The baseline is only reseeded when something is *added*, so it +accumulates dead clauses for findings that were long since fixed; listing the file would be +mostly noise. The intersection is what is genuinely still broken. + ### `ANCHOR` `doc-lint.mjs`'s `ANCHOR` rule catches a C++ attribute written as `` `[[nodiscard]]` `` in @@ -132,40 +180,18 @@ it is, makes `role=output` a blanket exemption for real C++; this file catches i the SHAPE advisory sidecar (doc/STYLE_GUIDE.md B3) fires on a role=output/role=figure block whose content looks like code and stays silent on a genuine one. -### `sentence_length` has no baseline entry — so the C2 gate is RED, on purpose +### `sentence_length` is gated, and its backlog is now grandfathered -**Read this before you try to make the Documentation job green.** `sentence_length` was added -after the committed `baseline.json` was taken, so **nothing in its slice is grandfathered** and -every one of its findings reports as new. Phase-4 exit gated it anyway -(`--gate 'sentence_length:^C2:'`), which means the blocking step **exits 1** on the whole hard -slice. Measured at 620fdf2c, that slice is exactly **two** findings, both in -`include/boost/capy/when_any.hpp` (`lint/.docstrings/when_any.hpp.adoc`) — a 27-word and a -31-word sentence of the shape *"If at least one child await-returned a zero `ec`, the result -holds …, unless producing the winner's payload threw, in which case that exception is -rethrown."* **Zero `.adoc` fingerprints remain under `^C2:`.** +Until the 2026-08-25 reseed this check had **no** baseline entry — it was added after the +previous snapshot — so every one of its findings reported as new on every run, and the old note +here described that state. It now carries 65 grandfathered fingerprints: **7 `C2`** (PR #383's, +accepted as backlog) and **58 `advisory-C2`**. Anything beyond those is genuinely new. -Those two are **accepted refusals, not defects.** A Phase-4 rewrite that split them made a false -claim against the code and was reverted verbatim; the maintainer's content review carries that -exact text. The maintainer declined an in-source refusal marker and chose **visible debt over new -machinery**, so: +Two rules from the old note still stand: * **Do not** add a suppression mechanism, and **do not** widen or head-trim the gate spec. -* **Do not** reseed `baseline.json` locally — a local run grandfathers ~357 local-vs-CI drift - fingerprints (see below). -* The fix is the **post-merge `workflow_dispatch` reseed** documented in the next section. Until - it lands, the Documentation job is red on one step with two known findings. - -By contrast the **C4/C9/C10** gates — `Capy.SimpleTense` / `Capy.NoFluff` / `Capy.Terminology` -over *both* surfaces — are **green today and need no reseed**. Their three residual `.adoc` -findings sit inside two verbatim third-party quoted passages and are already in -`baseline.json`, with fingerprints verified to describe those same sentences. - -One further consequence of gating this check: a **crash** of `sentence-length.mjs` is now fatal. -It is reported as `SKIPPED` on stderr, and a skip of a *gated* check fails the gate. - ---- - -## Reseeding `baseline.json` +* **Do not** reseed `baseline.json` locally — a local run grandfathers hundreds of + local-vs-CI drift fingerprints (see below). ### When you need to @@ -175,11 +201,11 @@ can be reintroduced later and the gate will still pass, because the snapshot say known issue. Reseed when a batch of fixes has landed and you want the gate to start protecting them. -**Never reseed to make a red gate go green** — *with exactly one pre-authorised exception, the -C2 case described under "`sentence_length` has no baseline entry", above.* Outside that case, a -red gate means something new was introduced: fix that instead. The exception exists because the -C2 gate is red for findings that were never new and were never defects, and grandfathering them -is the ruled resolution rather than a way around a real regression. +**Never reseed to make a red gate go green.** A gated addition means something new was +introduced: fix that instead. There is no standing exception. One was granted once, by hand, for +the reseed of 2026-08-25 — it accepted PR #383's eight gated findings as backlog rather than +block an already-merged PR — and it was retired with that commit. A future exception is a +maintainer decision recorded in its own reseed commit message, not a precedent set here. ### Why not just run `baseline.mjs` locally @@ -208,7 +234,7 @@ gh workflow run docs.yml --ref gh run list --workflow=docs.yml # then: gh run watch ``` -The run does everything a normal docs run does — including the blocking gate against the +The run does everything a normal docs run does — including the gate against the *currently committed* baseline — and then produces a candidate baseline, **only** because you dispatched it manually. A push or a pull request never produces one; an automatic reseed would absorb real regressions into the grandfathered backlog. @@ -220,32 +246,6 @@ doc/lint/baseline.json". The report ends in a `RESULT:` line; **if it does not s `candidate retires … none gated`, the reseed step has failed and you must not commit the file.** -> **The one pre-authorised exception, for the first reseed after the doc-improvement branch -> merges.** The point of that reseed is to grandfather the two accepted `when_any.hpp` C2 -> refusals described above — and a gated addition is exactly what the report treats as fatal. -> So the report **will** exit 1 with `RESULT: candidate must not be committed until its gated -> additions are justified`, and it **will** list precisely: -> -> ``` -> - sentence_length :: C2:lint/.docstrings/when_any.hpp.adoc:#1:sentence over 25 words -> - sentence_length :: C2:lint/.docstrings/when_any.hpp.adoc:#2:sentence over 25 words -> ``` -> -> Because that step ends in `exit "$status"` (`.github/workflows/docs.yml:406`), **the -> "report what the candidate would change" step shows as FAILED in the Actions UI.** That is -> expected here and is not an infra problem. **The candidate is still retrievable:** the upload -> step is guarded `if: always()` (`docs.yml:408-414`), so the -> `doc-lint-baseline-candidate` artifact is attached to the run even though the report step went -> red. Download it as usual. -> -> Those **two fingerprints, and nothing else**, are the justification. There is no -> `--allow-gated` flag today; accepting them is a maintainer decision made by hand and recorded -> in the reseed commit message. **Anything else in that list is a real regression — go fix the -> documentation instead.** -> -> **Delete this blockquote once the reseed is committed.** It documents a one-shot transition; -> left in place afterwards it becomes a standing exception to a rule that should have none. - Then check four things, in this order: 1. **A `SKIPPED` cell in the per-check table.** Stop if you see one. A skipped check means a @@ -302,7 +302,7 @@ next person can audit the decision: ci: reseed doc/lint/baseline.json from CI run Retires stale fingerprints (). Adds , all in non-gated -slices (); no added fingerprint matches the blocking gate spec. +slices (); no added fingerprint matches the gate spec. ``` Open a PR. The Documentation workflow on that PR runs the gate against your new baseline — @@ -312,7 +312,7 @@ Open a PR. The Documentation workflow on that PR runs the gate against your new ### Reading a candidate by hand (diagnosis only) `baseline-diff.mjs` compares any two snapshots. The CI step derives its `--gate` values from -the blocking step in `.github/workflows/docs.yml` so the two cannot rot apart; when you run it +the gate step in `.github/workflows/docs.yml` so the two cannot rot apart; when you run it by hand, copy them from that step — a report run with a stale or missing gate spec prints `none gated` and means nothing. @@ -328,7 +328,7 @@ node lint/baseline-diff.mjs lint/baseline.json /path/to/candidate.json \ ``` Six specs as of Phase-4 exit. The CI step extracts them, so this hand-run copy is the one that -can rot — check it against the blocking step before trusting a `none gated` result. +can rot — check it against the gate step before trusting a `none gated` result. Exit 0 means the candidate is explainable (it may still add *ungated* findings — read the report). Exit 1 means it must not be committed as-is, for one of three reasons, all named in diff --git a/doc/lint/baseline.json b/doc/lint/baseline.json index 0fdac1f23..9c6257b53 100644 --- a/doc/lint/baseline.json +++ b/doc/lint/baseline.json @@ -1,2621 +1,128 @@ { - "generatedAt": "2026-07-30T16:45:58.892Z", + "generatedAt": "2026-08-25T20:12:33.624Z", "note": "Snapshot of current violations (Task 2, Style Guide Part F.0). Non-blocking: this records the backlog so a future comparator can flag NEW findings without failing on the ones already known about. Fingerprints are line-insensitive: the `#N` component is the Nth occurrence of that (file, message) pair, NOT a line number, so inserting text above a finding does not rename it.", "checks": { "vale_adoc": { - "count": 2441, + "count": 89, "skipped": false, "fingerprints": [ - "modules/ROOT/nav.adoc:#10:Vale.Spelling", - "modules/ROOT/nav.adoc:#11:Vale.Spelling", - "modules/ROOT/nav.adoc:#12:Vale.Spelling", - "modules/ROOT/nav.adoc:#13:Vale.Spelling", - "modules/ROOT/nav.adoc:#14:Vale.Spelling", - "modules/ROOT/nav.adoc:#1:Vale.Spelling", - "modules/ROOT/nav.adoc:#2:Vale.Spelling", - "modules/ROOT/nav.adoc:#3:Vale.Spelling", - "modules/ROOT/nav.adoc:#4:Vale.Spelling", - "modules/ROOT/nav.adoc:#5:Vale.Spelling", - "modules/ROOT/nav.adoc:#6:Vale.Spelling", - "modules/ROOT/nav.adoc:#7:Vale.Spelling", - "modules/ROOT/nav.adoc:#8:Vale.Spelling", - "modules/ROOT/nav.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2.intro.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/2.cpp20-coroutines/2.intro.adoc:#1:Google.We", - "modules/ROOT/pages/2.cpp20-coroutines/2.intro.adoc:#1:Google.Will", - "modules/ROOT/pages/2.cpp20-coroutines/2.intro.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2.intro.adoc:#2:Capy.SimpleTense", - "modules/ROOT/pages/2.cpp20-coroutines/2.intro.adoc:#2:Google.Will", - "modules/ROOT/pages/2.cpp20-coroutines/2.intro.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2.intro.adoc:#3:Capy.SimpleTense", - "modules/ROOT/pages/2.cpp20-coroutines/2.intro.adoc:#3:Google.Will", - "modules/ROOT/pages/2.cpp20-coroutines/2.intro.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2.intro.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2.intro.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2.intro.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2.intro.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2.intro.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2.intro.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#16:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#17:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#18:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#19:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#1:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#1:Google.Will", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#1:Google.WordList", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#20:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#21:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#2:Capy.SimpleTense", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#2:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#2:Google.Will", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#3:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#4:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#5:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#6:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#7:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#8:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#16:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#17:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#18:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#19:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#1:Google.Colons", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#1:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#1:Google.Quotes", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#1:Google.Will", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#20:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#21:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#22:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#23:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#24:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#25:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#26:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#27:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#28:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#29:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#2:Capy.SimpleTense", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#2:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#2:Google.Quotes", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#2:Google.Will", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#30:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#31:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#32:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#33:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#34:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#35:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#36:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#37:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#38:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#39:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#3:Capy.SimpleTense", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#3:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#3:Google.Will", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#40:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#41:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#42:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#43:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#4:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#5:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#6:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#7:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#8:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#10:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#11:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#12:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#13:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#14:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#16:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#17:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#18:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#19:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#1:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#1:Google.Will", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#1:Google.WordList", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#20:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#21:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#22:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#23:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#24:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#25:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#26:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#27:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#28:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#29:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#2:Capy.SimpleTense", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#2:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#2:Google.Will", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#2:Google.WordList", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#30:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#31:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#32:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#33:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#34:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#35:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#36:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#37:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#38:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#39:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#3:Capy.SimpleTense", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#3:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#3:Google.Will", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#40:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#41:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#42:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#43:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#44:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#45:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#46:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#47:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#48:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#49:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#4:Capy.SimpleTense", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#4:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#4:Google.Will", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#50:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#51:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#52:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#53:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#54:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#55:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#56:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#57:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#58:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#5:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#6:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#7:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#8:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#9:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2c.machinery.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#10:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#11:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#12:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#13:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#14:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#15:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#16:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#16:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#17:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#18:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#19:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#1:Capy.NoFluff", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#1:Google.Headings", + "modules/ROOT/pages/2.cpp20-coroutines/2a.foundations.adoc:#1:Google.OxfordComma", "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#20:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#21:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#22:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#23:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#24:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#25:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#26:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#27:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#28:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#29:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#2:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#30:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#31:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#32:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#33:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#34:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#35:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#36:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#37:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#38:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#39:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#3:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#40:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#41:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#42:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#43:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#44:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#45:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#46:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#4:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#5:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#6:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#7:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#8:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#9:Google.Headings", - "modules/ROOT/pages/2.cpp20-coroutines/2d.advanced.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3.intro.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/3.concurrency/3.intro.adoc:#1:Google.Headings", - "modules/ROOT/pages/3.concurrency/3.intro.adoc:#1:Google.Will", - "modules/ROOT/pages/3.concurrency/3.intro.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3.intro.adoc:#2:Capy.SimpleTense", - "modules/ROOT/pages/3.concurrency/3.intro.adoc:#2:Google.Will", - "modules/ROOT/pages/3.concurrency/3a.foundations.adoc:#10:Google.Headings", - "modules/ROOT/pages/3.concurrency/3a.foundations.adoc:#11:Google.Headings", - "modules/ROOT/pages/3.concurrency/3a.foundations.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/3.concurrency/3a.foundations.adoc:#1:Google.Headings", - "modules/ROOT/pages/3.concurrency/3a.foundations.adoc:#1:Google.Will", - "modules/ROOT/pages/3.concurrency/3a.foundations.adoc:#1:Google.WordList", - "modules/ROOT/pages/3.concurrency/3a.foundations.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3a.foundations.adoc:#2:Capy.SimpleTense", - "modules/ROOT/pages/3.concurrency/3a.foundations.adoc:#2:Google.Headings", - "modules/ROOT/pages/3.concurrency/3a.foundations.adoc:#2:Google.Will", - "modules/ROOT/pages/3.concurrency/3a.foundations.adoc:#2:Google.WordList", - "modules/ROOT/pages/3.concurrency/3a.foundations.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3a.foundations.adoc:#3:Capy.SimpleTense", - "modules/ROOT/pages/3.concurrency/3a.foundations.adoc:#3:Google.Headings", - "modules/ROOT/pages/3.concurrency/3a.foundations.adoc:#3:Google.Will", - "modules/ROOT/pages/3.concurrency/3a.foundations.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3a.foundations.adoc:#4:Google.Headings", - "modules/ROOT/pages/3.concurrency/3a.foundations.adoc:#5:Google.Headings", - "modules/ROOT/pages/3.concurrency/3a.foundations.adoc:#6:Google.Headings", - "modules/ROOT/pages/3.concurrency/3a.foundations.adoc:#7:Google.Headings", - "modules/ROOT/pages/3.concurrency/3a.foundations.adoc:#8:Google.Headings", - "modules/ROOT/pages/3.concurrency/3a.foundations.adoc:#9:Google.Headings", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#16:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#17:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#18:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#19:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#1:Google.Headings", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#1:Google.Will", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#20:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#21:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#22:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#23:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#24:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#25:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#2:Capy.SimpleTense", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#2:Google.Headings", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#2:Google.Will", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#3:Capy.SimpleTense", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#3:Google.Headings", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#3:Google.Will", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#4:Google.Headings", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#5:Google.Headings", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#6:Google.Headings", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#7:Google.Headings", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#10:Google.Headings", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#11:Google.Headings", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#1:Google.Headings", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#1:Google.Latin", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#1:Google.Will", + "modules/ROOT/pages/3.concurrency/3b.synchronization.adoc:#1:Google.Colons", "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#2:Capy.SimpleTense", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#2:Google.Headings", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#2:Google.Latin", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#2:Google.Will", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#3:Google.Headings", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#4:Google.Headings", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#5:Google.Headings", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#6:Google.Headings", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#7:Google.Headings", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#8:Google.Headings", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#9:Google.Headings", - "modules/ROOT/pages/3.concurrency/3c.advanced.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3d.patterns.adoc:#10:Google.Headings", - "modules/ROOT/pages/3.concurrency/3d.patterns.adoc:#1:Google.Headings", - "modules/ROOT/pages/3.concurrency/3d.patterns.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3d.patterns.adoc:#2:Google.Headings", - "modules/ROOT/pages/3.concurrency/3d.patterns.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/3.concurrency/3d.patterns.adoc:#3:Google.Headings", - "modules/ROOT/pages/3.concurrency/3d.patterns.adoc:#4:Google.Headings", - "modules/ROOT/pages/3.concurrency/3d.patterns.adoc:#5:Google.Headings", - "modules/ROOT/pages/3.concurrency/3d.patterns.adoc:#6:Google.Headings", - "modules/ROOT/pages/3.concurrency/3d.patterns.adoc:#7:Google.Headings", - "modules/ROOT/pages/3.concurrency/3d.patterns.adoc:#8:Google.Headings", - "modules/ROOT/pages/3.concurrency/3d.patterns.adoc:#9:Google.Headings", - "modules/ROOT/pages/4.coroutines/4.intro.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4.intro.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4.intro.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4.intro.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4.intro.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/4.coroutines/4.intro.adoc:#1:Google.Headings", - "modules/ROOT/pages/4.coroutines/4.intro.adoc:#1:Google.Will", - "modules/ROOT/pages/4.coroutines/4.intro.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4.intro.adoc:#2:Capy.SimpleTense", - "modules/ROOT/pages/4.coroutines/4.intro.adoc:#2:Google.Will", - "modules/ROOT/pages/4.coroutines/4.intro.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4.intro.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4.intro.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4.intro.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4.intro.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4.intro.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4.intro.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4.intro.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#16:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#17:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#18:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#19:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#1:Capy.Terminology", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#1:Google.Headings", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#1:Google.Will", + "modules/ROOT/pages/4.coroutines/4.intro.adoc:#1:Google.OxfordComma", "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#20:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#21:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#22:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#23:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#24:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#2:Google.Headings", "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#3:Google.Headings", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#4:Google.Headings", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#5:Google.Headings", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#6:Google.Headings", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#7:Google.Headings", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#8:Google.Headings", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#9:Google.Headings", - "modules/ROOT/pages/4.coroutines/4a.tasks.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#16:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#17:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#1:Capy.Terminology", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#1:Google.Headings", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#1:Google.Will", "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#2:Capy.SimpleTense", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#2:Capy.Terminology", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#2:Google.Headings", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#2:Google.Will", "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#3:Google.Headings", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#4:Google.Headings", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#5:Google.Headings", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#6:Google.Headings", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#7:Google.Headings", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4b.launching.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#10:Google.Headings", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#11:Google.Headings", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#12:Google.Headings", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#13:Google.Headings", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#14:Google.Headings", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#15:Google.Headings", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#16:Google.Headings", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#16:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#17:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#18:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#19:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#1:Google.Headings", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#1:Google.Will", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#1:Google.WordList", "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#20:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#21:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#22:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#23:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#24:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#25:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#26:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#27:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#2:Google.Headings", "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#3:Google.Headings", "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#4:Google.Headings", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#5:Google.Headings", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#6:Google.Headings", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#7:Google.Headings", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#8:Google.Headings", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#9:Google.Headings", - "modules/ROOT/pages/4.coroutines/4c.executors.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#10:Google.Headings", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#11:Google.Headings", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#12:Google.Headings", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#13:Google.Headings", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#14:Google.Headings", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#15:Google.Headings", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#16:Google.Headings", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#16:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#17:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#18:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#19:Vale.Spelling", "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#1:Capy.NoFluff", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#1:Capy.Terminology", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#1:Google.EmDash", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#1:Google.Headings", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#1:Google.Will", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#1:Google.WordList", "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#20:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#21:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#22:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#23:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#24:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#25:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#26:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#27:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#28:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#29:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#2:Google.Headings", + "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#2:Capy.NoFluff", "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#30:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#31:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#32:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#33:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#34:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#35:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#36:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#37:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#38:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#39:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#3:Google.Headings", "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#40:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#41:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#42:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#43:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#44:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#45:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#46:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#47:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#48:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#49:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#4:Google.Headings", "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#50:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#51:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#52:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#53:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#54:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#55:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#56:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#57:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#5:Google.Headings", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#6:Google.Headings", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#7:Google.Headings", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#8:Google.Headings", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#9:Google.Headings", - "modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#10:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#11:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#12:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#13:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#14:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#15:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#16:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#16:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#17:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#17:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#18:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#18:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#19:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#19:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#1:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#1:Google.Will", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#1:Google.WordList", "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#20:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#20:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#21:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#21:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#22:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#22:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#23:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#23:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#24:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#24:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#25:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#25:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#26:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#26:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#27:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#27:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#28:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#28:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#29:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#2:Capy.SimpleTense", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#2:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#2:Google.Will", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#2:Google.WordList", "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#30:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#31:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#32:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#33:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#34:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#35:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#36:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#37:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#38:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#39:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#3:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#40:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#41:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#42:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#43:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#44:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#45:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#46:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#47:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#4:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#5:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#6:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#7:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#8:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#9:Google.Headings", - "modules/ROOT/pages/4.coroutines/4e.cancellation.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#10:Google.Headings", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#11:Google.Headings", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#12:Google.Headings", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#13:Google.Headings", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#14:Google.Headings", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#15:Google.Headings", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#1:Google.EmDash", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#1:Google.Headings", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#1:Google.Will", "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#2:Google.Headings", "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#3:Google.Headings", "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#4:Google.Headings", "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#5:Google.Headings", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#6:Google.Headings", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#7:Google.Headings", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#8:Google.Headings", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#9:Google.Headings", - "modules/ROOT/pages/4.coroutines/4f.composition.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#10:Google.Headings", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#11:Google.Headings", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#12:Google.Headings", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#13:Google.Headings", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#14:Google.Headings", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#15:Google.Headings", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#16:Google.Headings", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#16:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#17:Google.Headings", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#17:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#18:Google.Headings", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#18:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#19:Google.Headings", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#19:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#1:Google.EmDash", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#1:Google.Headings", "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#1:Google.LyHyphens", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#1:Google.WordList", "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#20:Google.Headings", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#20:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#21:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#22:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#23:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#24:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#25:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#26:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#27:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#28:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#29:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#2:Google.EmDash", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#2:Google.Headings", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#2:Google.WordList", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#30:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#31:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#32:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#33:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#34:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#35:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#36:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#37:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#38:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#39:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#3:Google.EmDash", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#3:Google.Headings", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#3:Google.WordList", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#40:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#41:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#42:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#43:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#44:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#4:Google.EmDash", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#4:Google.Headings", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#4:Google.WordList", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#5:Google.EmDash", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#5:Google.Headings", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#6:Google.Headings", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#7:Google.Headings", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#8:Google.Headings", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#9:Google.Headings", - "modules/ROOT/pages/4.coroutines/4g.allocators.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#10:Google.Headings", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#11:Google.Headings", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#12:Google.Headings", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#16:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#17:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#18:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#19:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#1:Google.EmDash", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#1:Google.Headings", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#20:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#21:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#22:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#23:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#24:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#25:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#26:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#2:Google.Headings", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#3:Google.Headings", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#4:Google.Headings", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#5:Google.Headings", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#6:Google.Headings", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#7:Google.Headings", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#8:Google.Headings", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#9:Google.Headings", - "modules/ROOT/pages/4.coroutines/4h.lambda-captures.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5.intro.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/5.buffers/5.intro.adoc:#1:Google.Headings", - "modules/ROOT/pages/5.buffers/5.intro.adoc:#1:Google.Will", - "modules/ROOT/pages/5.buffers/5.intro.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5.intro.adoc:#2:Capy.SimpleTense", - "modules/ROOT/pages/5.buffers/5.intro.adoc:#2:Google.Will", - "modules/ROOT/pages/5.buffers/5.intro.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5.intro.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5a.overview.adoc:#10:Google.Headings", - "modules/ROOT/pages/5.buffers/5a.overview.adoc:#1:Google.FirstPerson", - "modules/ROOT/pages/5.buffers/5a.overview.adoc:#1:Google.Headings", - "modules/ROOT/pages/5.buffers/5a.overview.adoc:#1:Google.WordList", - "modules/ROOT/pages/5.buffers/5a.overview.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5a.overview.adoc:#2:Google.FirstPerson", - "modules/ROOT/pages/5.buffers/5a.overview.adoc:#2:Google.Headings", - "modules/ROOT/pages/5.buffers/5a.overview.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5a.overview.adoc:#3:Google.Headings", - "modules/ROOT/pages/5.buffers/5a.overview.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5a.overview.adoc:#4:Google.Headings", - "modules/ROOT/pages/5.buffers/5a.overview.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5a.overview.adoc:#5:Google.Headings", - "modules/ROOT/pages/5.buffers/5a.overview.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5a.overview.adoc:#6:Google.Headings", - "modules/ROOT/pages/5.buffers/5a.overview.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5a.overview.adoc:#7:Google.Headings", - "modules/ROOT/pages/5.buffers/5a.overview.adoc:#8:Google.Headings", - "modules/ROOT/pages/5.buffers/5a.overview.adoc:#9:Google.Headings", - "modules/ROOT/pages/5.buffers/5b.types.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5b.types.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5b.types.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5b.types.adoc:#1:Google.Headings", - "modules/ROOT/pages/5.buffers/5b.types.adoc:#1:Google.LyHyphens", - "modules/ROOT/pages/5.buffers/5b.types.adoc:#1:Google.WordList", - "modules/ROOT/pages/5.buffers/5b.types.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5b.types.adoc:#2:Google.Headings", - "modules/ROOT/pages/5.buffers/5b.types.adoc:#2:Google.WordList", - "modules/ROOT/pages/5.buffers/5b.types.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5b.types.adoc:#3:Google.Headings", - "modules/ROOT/pages/5.buffers/5b.types.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5b.types.adoc:#4:Google.Headings", - "modules/ROOT/pages/5.buffers/5b.types.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5b.types.adoc:#5:Google.Headings", - "modules/ROOT/pages/5.buffers/5b.types.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5b.types.adoc:#6:Google.Headings", - "modules/ROOT/pages/5.buffers/5b.types.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5b.types.adoc:#7:Google.Headings", - "modules/ROOT/pages/5.buffers/5b.types.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5b.types.adoc:#8:Google.Headings", - "modules/ROOT/pages/5.buffers/5b.types.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5b.types.adoc:#9:Google.Headings", - "modules/ROOT/pages/5.buffers/5b.types.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5c.sequences.adoc:#10:Google.Headings", - "modules/ROOT/pages/5.buffers/5c.sequences.adoc:#11:Google.Headings", - "modules/ROOT/pages/5.buffers/5c.sequences.adoc:#1:Capy.NoFluff", - "modules/ROOT/pages/5.buffers/5c.sequences.adoc:#1:Google.Headings", - "modules/ROOT/pages/5.buffers/5c.sequences.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5c.sequences.adoc:#2:Google.Headings", - "modules/ROOT/pages/5.buffers/5c.sequences.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5c.sequences.adoc:#3:Google.Headings", - "modules/ROOT/pages/5.buffers/5c.sequences.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5c.sequences.adoc:#4:Google.Headings", - "modules/ROOT/pages/5.buffers/5c.sequences.adoc:#5:Google.Headings", - "modules/ROOT/pages/5.buffers/5c.sequences.adoc:#6:Google.Headings", - "modules/ROOT/pages/5.buffers/5c.sequences.adoc:#7:Google.Headings", - "modules/ROOT/pages/5.buffers/5c.sequences.adoc:#8:Google.Headings", - "modules/ROOT/pages/5.buffers/5c.sequences.adoc:#9:Google.Headings", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#10:Google.Headings", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#11:Google.Headings", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#12:Google.Headings", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#13:Google.Headings", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#14:Google.Headings", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#15:Google.Headings", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#16:Google.Headings", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#16:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#17:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#1:Google.Headings", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#2:Google.Headings", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#3:Google.Headings", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#4:Google.Headings", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#5:Google.Headings", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#6:Google.Headings", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#7:Google.Headings", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#8:Google.Headings", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#9:Google.Headings", - "modules/ROOT/pages/5.buffers/5d.system-io.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5e.algorithms.adoc:#10:Google.Headings", - "modules/ROOT/pages/5.buffers/5e.algorithms.adoc:#11:Google.Headings", - "modules/ROOT/pages/5.buffers/5e.algorithms.adoc:#12:Google.Headings", - "modules/ROOT/pages/5.buffers/5e.algorithms.adoc:#13:Google.Headings", - "modules/ROOT/pages/5.buffers/5e.algorithms.adoc:#14:Google.Headings", - "modules/ROOT/pages/5.buffers/5e.algorithms.adoc:#15:Google.Headings", - "modules/ROOT/pages/5.buffers/5e.algorithms.adoc:#16:Google.Headings", - "modules/ROOT/pages/5.buffers/5e.algorithms.adoc:#17:Google.Headings", - "modules/ROOT/pages/5.buffers/5e.algorithms.adoc:#1:Google.Headings", - "modules/ROOT/pages/5.buffers/5e.algorithms.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5e.algorithms.adoc:#2:Google.Headings", - "modules/ROOT/pages/5.buffers/5e.algorithms.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5e.algorithms.adoc:#3:Google.Headings", - "modules/ROOT/pages/5.buffers/5e.algorithms.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5e.algorithms.adoc:#4:Google.Headings", - "modules/ROOT/pages/5.buffers/5e.algorithms.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5e.algorithms.adoc:#5:Google.Headings", - "modules/ROOT/pages/5.buffers/5e.algorithms.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5e.algorithms.adoc:#6:Google.Headings", - "modules/ROOT/pages/5.buffers/5e.algorithms.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/5.buffers/5e.algorithms.adoc:#7:Google.Headings", - "modules/ROOT/pages/5.buffers/5e.algorithms.adoc:#8:Google.Headings", - "modules/ROOT/pages/5.buffers/5e.algorithms.adoc:#9:Google.Headings", - "modules/ROOT/pages/6.streams/6.intro.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/6.streams/6.intro.adoc:#1:Google.Headings", - "modules/ROOT/pages/6.streams/6.intro.adoc:#1:Google.Will", - "modules/ROOT/pages/6.streams/6.intro.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/6.streams/6.intro.adoc:#2:Capy.SimpleTense", - "modules/ROOT/pages/6.streams/6.intro.adoc:#2:Google.Will", - "modules/ROOT/pages/6.streams/6.intro.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/6.streams/6.intro.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/6.streams/6.intro.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/6.streams/6.intro.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/6.streams/6a.overview.adoc:#1:Google.Headings", - "modules/ROOT/pages/6.streams/6a.overview.adoc:#1:Google.WordList", - "modules/ROOT/pages/6.streams/6a.overview.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/6.streams/6a.overview.adoc:#2:Google.Headings", - "modules/ROOT/pages/6.streams/6a.overview.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/6.streams/6a.overview.adoc:#3:Google.Headings", - "modules/ROOT/pages/6.streams/6a.overview.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/6.streams/6a.overview.adoc:#4:Google.Headings", - "modules/ROOT/pages/6.streams/6a.overview.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/6.streams/6a.overview.adoc:#5:Google.Headings", - "modules/ROOT/pages/6.streams/6a.overview.adoc:#6:Google.Headings", - "modules/ROOT/pages/6.streams/6a.overview.adoc:#7:Google.Headings", - "modules/ROOT/pages/6.streams/6b.streams.adoc:#10:Google.Headings", - "modules/ROOT/pages/6.streams/6b.streams.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/6.streams/6b.streams.adoc:#11:Google.Headings", - "modules/ROOT/pages/6.streams/6b.streams.adoc:#12:Google.Headings", - "modules/ROOT/pages/6.streams/6b.streams.adoc:#1:Google.Headings", + "modules/ROOT/pages/5.buffers/5a.buffers.adoc:#1:Google.LyHyphens", + "modules/ROOT/pages/5.buffers/5a.buffers.adoc:#1:Google.OxfordComma", + "modules/ROOT/pages/5.buffers/5a.buffers.adoc:#1:Vale.Spelling", + "modules/ROOT/pages/5.buffers/5a.buffers.adoc:#2:Google.OxfordComma", + "modules/ROOT/pages/5.buffers/5a.buffers.adoc:#2:Vale.Spelling", + "modules/ROOT/pages/5.buffers/5a.buffers.adoc:#3:Vale.Spelling", + "modules/ROOT/pages/5.buffers/5a.buffers.adoc:#4:Vale.Spelling", + "modules/ROOT/pages/5.buffers/5a.buffers.adoc:#5:Vale.Spelling", + "modules/ROOT/pages/5.buffers/5a.buffers.adoc:#6:Vale.Spelling", "modules/ROOT/pages/6.streams/6b.streams.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/6.streams/6b.streams.adoc:#2:Google.Headings", "modules/ROOT/pages/6.streams/6b.streams.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/6.streams/6b.streams.adoc:#3:Google.Headings", "modules/ROOT/pages/6.streams/6b.streams.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/6.streams/6b.streams.adoc:#4:Google.Headings", "modules/ROOT/pages/6.streams/6b.streams.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/6.streams/6b.streams.adoc:#5:Google.Headings", "modules/ROOT/pages/6.streams/6b.streams.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/6.streams/6b.streams.adoc:#6:Google.Headings", "modules/ROOT/pages/6.streams/6b.streams.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/6.streams/6b.streams.adoc:#7:Google.Headings", - "modules/ROOT/pages/6.streams/6b.streams.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/6.streams/6b.streams.adoc:#8:Google.Headings", - "modules/ROOT/pages/6.streams/6b.streams.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/6.streams/6b.streams.adoc:#9:Google.Headings", - "modules/ROOT/pages/6.streams/6b.streams.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/6.streams/6f.isolation.adoc:#1:Google.Headings", - "modules/ROOT/pages/6.streams/6f.isolation.adoc:#1:Google.WordList", - "modules/ROOT/pages/6.streams/6f.isolation.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/6.streams/6f.isolation.adoc:#2:Google.Headings", - "modules/ROOT/pages/6.streams/6f.isolation.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/6.streams/6f.isolation.adoc:#3:Google.Headings", - "modules/ROOT/pages/6.streams/6f.isolation.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/6.streams/6f.isolation.adoc:#4:Google.Headings", - "modules/ROOT/pages/6.streams/6f.isolation.adoc:#5:Google.Headings", - "modules/ROOT/pages/6.streams/6f.isolation.adoc:#6:Google.Headings", - "modules/ROOT/pages/6.streams/6f.isolation.adoc:#7:Google.Headings", - "modules/ROOT/pages/6.streams/6f.isolation.adoc:#8:Google.Headings", - "modules/ROOT/pages/6.streams/6f.isolation.adoc:#9:Google.Headings", - "modules/ROOT/pages/7.testing/7.intro.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/7.testing/7.intro.adoc:#1:Google.Headings", - "modules/ROOT/pages/7.testing/7.intro.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/7.testing/7.intro.adoc:#2:Google.Headings", - "modules/ROOT/pages/7.testing/7.intro.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/7.testing/7.intro.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#10:Google.Headings", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#11:Google.Headings", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#12:Google.Headings", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#13:Google.Headings", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#14:Google.Headings", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#16:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#17:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#18:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#19:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#1:Capy.NoFluff", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#1:Google.EmDash", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#1:Google.Headings", "modules/ROOT/pages/7.testing/7a.drivers.adoc:#1:Google.LyHyphens", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#1:Google.Units", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#1:Google.Will", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#1:Google.WordList", "modules/ROOT/pages/7.testing/7a.drivers.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#20:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#21:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#22:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#23:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#24:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#25:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#26:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#27:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#28:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#29:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#2:Google.Headings", "modules/ROOT/pages/7.testing/7a.drivers.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#30:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#3:Google.Headings", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#4:Google.Headings", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#5:Google.Headings", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#6:Google.Headings", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#7:Google.Headings", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#8:Google.Headings", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#9:Google.Headings", - "modules/ROOT/pages/7.testing/7a.drivers.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/7.testing/7b.mock-streams.adoc:#10:Google.Headings", - "modules/ROOT/pages/7.testing/7b.mock-streams.adoc:#11:Google.Headings", - "modules/ROOT/pages/7.testing/7b.mock-streams.adoc:#12:Google.Headings", - "modules/ROOT/pages/7.testing/7b.mock-streams.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/7.testing/7b.mock-streams.adoc:#1:Google.Headings", "modules/ROOT/pages/7.testing/7b.mock-streams.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/7.testing/7b.mock-streams.adoc:#2:Google.Headings", "modules/ROOT/pages/7.testing/7b.mock-streams.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/7.testing/7b.mock-streams.adoc:#3:Google.Headings", - "modules/ROOT/pages/7.testing/7b.mock-streams.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/7.testing/7b.mock-streams.adoc:#4:Google.Headings", - "modules/ROOT/pages/7.testing/7b.mock-streams.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/7.testing/7b.mock-streams.adoc:#5:Google.Headings", - "modules/ROOT/pages/7.testing/7b.mock-streams.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/7.testing/7b.mock-streams.adoc:#6:Google.Headings", - "modules/ROOT/pages/7.testing/7b.mock-streams.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/7.testing/7b.mock-streams.adoc:#7:Google.Headings", - "modules/ROOT/pages/7.testing/7b.mock-streams.adoc:#8:Google.Headings", - "modules/ROOT/pages/7.testing/7b.mock-streams.adoc:#9:Google.Headings", - "modules/ROOT/pages/7.testing/7e.buffer-inspection.adoc:#1:Google.Headings", "modules/ROOT/pages/7.testing/7e.buffer-inspection.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/7.testing/7e.buffer-inspection.adoc:#2:Google.Headings", "modules/ROOT/pages/7.testing/7e.buffer-inspection.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/7.testing/7e.buffer-inspection.adoc:#3:Google.Headings", "modules/ROOT/pages/7.testing/7e.buffer-inspection.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/7.testing/7e.buffer-inspection.adoc:#4:Google.Headings", - "modules/ROOT/pages/7.testing/7e.buffer-inspection.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/7.testing/7e.buffer-inspection.adoc:#5:Google.Headings", - "modules/ROOT/pages/7.testing/7e.buffer-inspection.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/7.testing/7e.buffer-inspection.adoc:#6:Google.Headings", - "modules/ROOT/pages/7.testing/7e.buffer-inspection.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/7.testing/7e.buffer-inspection.adoc:#7:Google.Headings", - "modules/ROOT/pages/8.examples/8.intro.adoc:#1:Google.Headings", - "modules/ROOT/pages/8.examples/8.intro.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/8.examples/8.intro.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/8.examples/8a.hello-task.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/8.examples/8a.hello-task.adoc:#1:Capy.Terminology", - "modules/ROOT/pages/8.examples/8a.hello-task.adoc:#1:Google.Headings", - "modules/ROOT/pages/8.examples/8a.hello-task.adoc:#1:Google.Will", - "modules/ROOT/pages/8.examples/8a.hello-task.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/8.examples/8a.hello-task.adoc:#2:Google.Headings", - "modules/ROOT/pages/8.examples/8a.hello-task.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/8.examples/8a.hello-task.adoc:#3:Google.Headings", - "modules/ROOT/pages/8.examples/8a.hello-task.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/8.examples/8a.hello-task.adoc:#4:Google.Headings", - "modules/ROOT/pages/8.examples/8a.hello-task.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/8.examples/8a.hello-task.adoc:#5:Google.Headings", - "modules/ROOT/pages/8.examples/8a.hello-task.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/8.examples/8a.hello-task.adoc:#6:Google.Headings", - "modules/ROOT/pages/8.examples/8a.hello-task.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/8.examples/8a.hello-task.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/8.examples/8a.hello-task.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/8.examples/8b.producer-consumer.adoc:#1:Capy.NoFluff", - "modules/ROOT/pages/8.examples/8b.producer-consumer.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/8.examples/8b.producer-consumer.adoc:#1:Google.Headings", - "modules/ROOT/pages/8.examples/8b.producer-consumer.adoc:#1:Google.Will", - "modules/ROOT/pages/8.examples/8b.producer-consumer.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/8.examples/8b.producer-consumer.adoc:#2:Google.Headings", - "modules/ROOT/pages/8.examples/8b.producer-consumer.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/8.examples/8b.producer-consumer.adoc:#3:Google.Headings", - "modules/ROOT/pages/8.examples/8b.producer-consumer.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/8.examples/8b.producer-consumer.adoc:#4:Google.Headings", - "modules/ROOT/pages/8.examples/8b.producer-consumer.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/8.examples/8b.producer-consumer.adoc:#5:Google.Headings", - "modules/ROOT/pages/8.examples/8b.producer-consumer.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/8.examples/8b.producer-consumer.adoc:#6:Google.Headings", - "modules/ROOT/pages/8.examples/8b.producer-consumer.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/8.examples/8b.producer-consumer.adoc:#7:Google.Headings", - "modules/ROOT/pages/8.examples/8b.producer-consumer.adoc:#8:Google.Headings", - "modules/ROOT/pages/8.examples/8c.buffer-composition.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/8.examples/8c.buffer-composition.adoc:#1:Google.Headings", - "modules/ROOT/pages/8.examples/8c.buffer-composition.adoc:#1:Google.Will", - "modules/ROOT/pages/8.examples/8c.buffer-composition.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/8.examples/8c.buffer-composition.adoc:#2:Google.Headings", - "modules/ROOT/pages/8.examples/8c.buffer-composition.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/8.examples/8c.buffer-composition.adoc:#3:Google.Headings", - "modules/ROOT/pages/8.examples/8c.buffer-composition.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/8.examples/8c.buffer-composition.adoc:#4:Google.Headings", - "modules/ROOT/pages/8.examples/8c.buffer-composition.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/8.examples/8c.buffer-composition.adoc:#5:Google.Headings", - "modules/ROOT/pages/8.examples/8c.buffer-composition.adoc:#6:Google.Headings", - "modules/ROOT/pages/8.examples/8c.buffer-composition.adoc:#7:Google.Headings", - "modules/ROOT/pages/8.examples/8c.buffer-composition.adoc:#8:Google.Headings", - "modules/ROOT/pages/8.examples/8d.mock-stream-testing.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/8.examples/8d.mock-stream-testing.adoc:#1:Google.Headings", - "modules/ROOT/pages/8.examples/8d.mock-stream-testing.adoc:#1:Google.Will", "modules/ROOT/pages/8.examples/8d.mock-stream-testing.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/8.examples/8d.mock-stream-testing.adoc:#2:Google.Headings", - "modules/ROOT/pages/8.examples/8d.mock-stream-testing.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/8.examples/8d.mock-stream-testing.adoc:#3:Google.Headings", - "modules/ROOT/pages/8.examples/8d.mock-stream-testing.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/8.examples/8d.mock-stream-testing.adoc:#4:Google.Headings", - "modules/ROOT/pages/8.examples/8d.mock-stream-testing.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/8.examples/8d.mock-stream-testing.adoc:#5:Google.Headings", - "modules/ROOT/pages/8.examples/8d.mock-stream-testing.adoc:#6:Google.Headings", - "modules/ROOT/pages/8.examples/8d.mock-stream-testing.adoc:#7:Google.Headings", - "modules/ROOT/pages/8.examples/8e.type-erased-echo.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/8.examples/8e.type-erased-echo.adoc:#1:Google.Headings", - "modules/ROOT/pages/8.examples/8e.type-erased-echo.adoc:#1:Google.Latin", - "modules/ROOT/pages/8.examples/8e.type-erased-echo.adoc:#1:Google.Will", - "modules/ROOT/pages/8.examples/8e.type-erased-echo.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/8.examples/8e.type-erased-echo.adoc:#2:Google.Headings", - "modules/ROOT/pages/8.examples/8e.type-erased-echo.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/8.examples/8e.type-erased-echo.adoc:#3:Google.Headings", - "modules/ROOT/pages/8.examples/8e.type-erased-echo.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/8.examples/8e.type-erased-echo.adoc:#4:Google.Headings", - "modules/ROOT/pages/8.examples/8e.type-erased-echo.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/8.examples/8e.type-erased-echo.adoc:#5:Google.Headings", - "modules/ROOT/pages/8.examples/8e.type-erased-echo.adoc:#6:Google.Headings", - "modules/ROOT/pages/8.examples/8e.type-erased-echo.adoc:#7:Google.Headings", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#10:Google.Headings", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#11:Google.Headings", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#16:Vale.Spelling", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#17:Vale.Spelling", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#18:Vale.Spelling", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#1:Google.Colons", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#1:Google.FirstPerson", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#1:Google.Headings", "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#1:Google.Units", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#1:Google.Will", "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#2:Google.Headings", "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#3:Google.Headings", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#4:Google.Headings", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#5:Google.Headings", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#6:Google.Headings", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#7:Google.Headings", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#8:Google.Headings", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#9:Google.Headings", - "modules/ROOT/pages/8.examples/8f.timeout-cancellation.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/8.examples/8g.parallel-fetch.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/8.examples/8g.parallel-fetch.adoc:#1:Google.EmDash", - "modules/ROOT/pages/8.examples/8g.parallel-fetch.adoc:#1:Google.Headings", - "modules/ROOT/pages/8.examples/8g.parallel-fetch.adoc:#1:Google.Will", "modules/ROOT/pages/8.examples/8g.parallel-fetch.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/8.examples/8g.parallel-fetch.adoc:#2:Google.Headings", "modules/ROOT/pages/8.examples/8g.parallel-fetch.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/8.examples/8g.parallel-fetch.adoc:#3:Google.Headings", - "modules/ROOT/pages/8.examples/8g.parallel-fetch.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/8.examples/8g.parallel-fetch.adoc:#4:Google.Headings", - "modules/ROOT/pages/8.examples/8g.parallel-fetch.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/8.examples/8g.parallel-fetch.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/8.examples/8k.strand-serialization.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/8.examples/8k.strand-serialization.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/8.examples/8k.strand-serialization.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/8.examples/8k.strand-serialization.adoc:#1:Google.EmDash", - "modules/ROOT/pages/8.examples/8k.strand-serialization.adoc:#1:Google.Headings", - "modules/ROOT/pages/8.examples/8k.strand-serialization.adoc:#1:Google.Will", - "modules/ROOT/pages/8.examples/8k.strand-serialization.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/8.examples/8k.strand-serialization.adoc:#2:Google.Headings", - "modules/ROOT/pages/8.examples/8k.strand-serialization.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/8.examples/8k.strand-serialization.adoc:#3:Google.Headings", - "modules/ROOT/pages/8.examples/8k.strand-serialization.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/8.examples/8k.strand-serialization.adoc:#4:Google.Headings", - "modules/ROOT/pages/8.examples/8k.strand-serialization.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/8.examples/8k.strand-serialization.adoc:#5:Google.Headings", - "modules/ROOT/pages/8.examples/8k.strand-serialization.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/8.examples/8k.strand-serialization.adoc:#6:Google.Headings", - "modules/ROOT/pages/8.examples/8k.strand-serialization.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/8.examples/8k.strand-serialization.adoc:#7:Google.Headings", - "modules/ROOT/pages/8.examples/8k.strand-serialization.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/8.examples/8k.strand-serialization.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/8.examples/8k.strand-serialization.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#1:Google.EmDash", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#1:Google.Headings", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#1:Google.Latin", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#1:Google.Will", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#2:Capy.SimpleTense", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#2:Google.Headings", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#2:Google.Will", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#3:Google.Headings", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#4:Google.Headings", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#5:Google.Headings", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#6:Google.Headings", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#7:Google.Headings", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#8:Google.Headings", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/8.examples/8l.async-mutex.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/8.examples/8m.parallel-tasks.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/8.examples/8m.parallel-tasks.adoc:#1:Google.Headings", - "modules/ROOT/pages/8.examples/8m.parallel-tasks.adoc:#1:Google.Will", "modules/ROOT/pages/8.examples/8m.parallel-tasks.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/8.examples/8m.parallel-tasks.adoc:#2:Capy.SimpleTense", - "modules/ROOT/pages/8.examples/8m.parallel-tasks.adoc:#2:Google.Headings", - "modules/ROOT/pages/8.examples/8m.parallel-tasks.adoc:#2:Google.Will", - "modules/ROOT/pages/8.examples/8m.parallel-tasks.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/8.examples/8m.parallel-tasks.adoc:#3:Google.Headings", - "modules/ROOT/pages/8.examples/8m.parallel-tasks.adoc:#4:Google.Headings", - "modules/ROOT/pages/8.examples/8m.parallel-tasks.adoc:#5:Google.Headings", - "modules/ROOT/pages/8.examples/8m.parallel-tasks.adoc:#6:Google.Headings", - "modules/ROOT/pages/8.examples/8m.parallel-tasks.adoc:#7:Google.Headings", - "modules/ROOT/pages/8.examples/8m.parallel-tasks.adoc:#8:Google.Headings", - "modules/ROOT/pages/8.examples/8n.custom-executor.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/8.examples/8n.custom-executor.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/8.examples/8n.custom-executor.adoc:#1:Capy.NoFluff", - "modules/ROOT/pages/8.examples/8n.custom-executor.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/8.examples/8n.custom-executor.adoc:#1:Google.Headings", - "modules/ROOT/pages/8.examples/8n.custom-executor.adoc:#1:Google.Latin", - "modules/ROOT/pages/8.examples/8n.custom-executor.adoc:#1:Google.Will", "modules/ROOT/pages/8.examples/8n.custom-executor.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/8.examples/8n.custom-executor.adoc:#2:Google.Headings", - "modules/ROOT/pages/8.examples/8n.custom-executor.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/8.examples/8n.custom-executor.adoc:#3:Google.Headings", - "modules/ROOT/pages/8.examples/8n.custom-executor.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/8.examples/8n.custom-executor.adoc:#4:Google.Headings", - "modules/ROOT/pages/8.examples/8n.custom-executor.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/8.examples/8n.custom-executor.adoc:#5:Google.Headings", - "modules/ROOT/pages/8.examples/8n.custom-executor.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/8.examples/8n.custom-executor.adoc:#6:Google.Headings", - "modules/ROOT/pages/8.examples/8n.custom-executor.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/8.examples/8n.custom-executor.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/8.examples/8n.custom-executor.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/8.examples/8n.custom-executor.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/8.examples/8o.sender-bridge.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/8.examples/8o.sender-bridge.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/8.examples/8o.sender-bridge.adoc:#1:Google.Headings", - "modules/ROOT/pages/8.examples/8o.sender-bridge.adoc:#1:Google.Will", - "modules/ROOT/pages/8.examples/8o.sender-bridge.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/8.examples/8o.sender-bridge.adoc:#2:Google.Headings", - "modules/ROOT/pages/8.examples/8o.sender-bridge.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/8.examples/8o.sender-bridge.adoc:#3:Google.Headings", - "modules/ROOT/pages/8.examples/8o.sender-bridge.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/8.examples/8o.sender-bridge.adoc:#4:Google.Headings", - "modules/ROOT/pages/8.examples/8o.sender-bridge.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/8.examples/8o.sender-bridge.adoc:#5:Google.Headings", - "modules/ROOT/pages/8.examples/8o.sender-bridge.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/8.examples/8o.sender-bridge.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/8.examples/8o.sender-bridge.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/8.examples/8o.sender-bridge.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/8.examples/8o.sender-bridge.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/8.examples/8p.asio-use-capy.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/8.examples/8p.asio-use-capy.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/8.examples/8p.asio-use-capy.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/8.examples/8p.asio-use-capy.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/8.examples/8p.asio-use-capy.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/8.examples/8p.asio-use-capy.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/8.examples/8p.asio-use-capy.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/8.examples/8p.asio-use-capy.adoc:#1:Google.Headings", - "modules/ROOT/pages/8.examples/8p.asio-use-capy.adoc:#1:Google.Spacing", - "modules/ROOT/pages/8.examples/8p.asio-use-capy.adoc:#1:Google.Will", - "modules/ROOT/pages/8.examples/8p.asio-use-capy.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/8.examples/8p.asio-use-capy.adoc:#2:Google.Headings", - "modules/ROOT/pages/8.examples/8p.asio-use-capy.adoc:#2:Google.Spacing", - "modules/ROOT/pages/8.examples/8p.asio-use-capy.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/8.examples/8p.asio-use-capy.adoc:#3:Google.Headings", - "modules/ROOT/pages/8.examples/8p.asio-use-capy.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/8.examples/8p.asio-use-capy.adoc:#4:Google.Headings", - "modules/ROOT/pages/8.examples/8p.asio-use-capy.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/8.examples/8p.asio-use-capy.adoc:#5:Google.Headings", - "modules/ROOT/pages/8.examples/8p.asio-use-capy.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/8.examples/8p.asio-use-capy.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/8.examples/8p.asio-use-capy.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/8.examples/8p.asio-use-capy.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/8.examples/8p.asio-use-capy.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/9.design/9.intro.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#16:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#17:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#18:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#19:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#1:Capy.Terminology", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#1:Google.Headings", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#1:Google.We", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#1:Google.WordList", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#20:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#21:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#22:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#23:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#24:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#25:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#26:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#27:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#28:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#29:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#2:Google.Headings", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#2:Google.We", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#2:Google.WordList", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#30:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#31:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#32:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#33:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#3:Google.Headings", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#3:Google.WordList", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#4:Google.Headings", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#5:Google.Headings", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#6:Google.Headings", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#16:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#17:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#18:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#19:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#1:Capy.NoFluff", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#1:Google.Colons", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#1:Google.Headings", "modules/ROOT/pages/9.design/9b.Separation.adoc:#1:Google.Ordinal", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#1:Google.Spacing", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#1:Google.WordList", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#20:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#21:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#22:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#23:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#24:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#25:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#26:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#27:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#28:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#29:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#2:Google.Headings", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#2:Google.Spacing", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#2:Google.WordList", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#30:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#31:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#32:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#33:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#34:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#35:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#36:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#37:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#38:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#39:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#3:Google.Headings", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#3:Google.WordList", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#40:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#41:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#42:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#43:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#44:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#45:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#46:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#47:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#48:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#49:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#4:Google.Headings", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#50:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#51:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#52:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#53:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#54:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#55:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#56:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#57:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#58:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#59:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#5:Google.Headings", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#60:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#61:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#62:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#63:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#64:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#65:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#66:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#67:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#68:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#69:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#6:Google.Headings", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#70:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#71:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#72:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#73:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#74:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#75:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#76:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#77:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#78:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#79:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#80:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#81:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#82:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#83:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#84:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#85:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#86:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#87:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#88:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#89:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/9.design/9b.Separation.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#10:Google.Headings", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#11:Google.Headings", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#12:Google.Headings", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#13:Google.Headings", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#14:Google.Headings", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#15:Google.Headings", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#16:Google.Headings", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#17:Google.Headings", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#18:Google.Headings", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#19:Google.Headings", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#1:Capy.NoFluff", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#1:Google.FirstPerson", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#1:Google.Headings", "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#1:Google.LyHyphens", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#1:Google.WordList", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#20:Google.Headings", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#2:Google.Headings", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#2:Google.WordList", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#3:Google.Headings", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#4:Google.Headings", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#5:Google.Headings", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#6:Google.Headings", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#7:Google.Headings", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#8:Google.Headings", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/9.design/9c.ReadStream.adoc:#9:Google.Headings", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#10:Google.Headings", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#11:Google.Headings", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#12:Google.Headings", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#13:Google.Headings", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#14:Google.Headings", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#15:Google.Headings", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#1:Google.EmDash", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#1:Google.Headings", "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#1:Google.LyHyphens", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#2:Google.EmDash", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#2:Google.Headings", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#3:Google.Headings", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#4:Google.Headings", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#5:Google.Headings", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#6:Google.Headings", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#7:Google.Headings", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#8:Google.Headings", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#9:Google.Headings", - "modules/ROOT/pages/9.design/9f.WriteStream.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#16:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#17:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#18:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#19:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#1:Google.EmDash", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#1:Google.Headings", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#1:Google.Latin", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#1:Google.WordList", "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#20:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#21:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#22:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#23:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#24:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#25:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#26:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#27:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#28:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#29:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#2:Google.EmDash", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#2:Google.Headings", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#2:Google.Latin", "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#30:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#31:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#32:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#33:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#34:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#35:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#36:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#37:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#38:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#39:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#3:Google.Headings", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#3:Google.Latin", "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#40:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#41:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#42:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#43:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#44:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#45:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#46:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#47:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#48:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#49:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#4:Google.Headings", "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#50:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#51:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#52:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#53:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#54:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#55:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#56:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#57:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#5:Google.Headings", "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#6:Google.Headings", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#10:Google.EmDash", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#10:Google.Headings", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#11:Google.EmDash", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#11:Google.Headings", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#12:Google.Headings", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#13:Google.Headings", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#14:Google.Headings", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#15:Google.Headings", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#16:Google.Headings", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#16:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#17:Google.Headings", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#17:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#18:Google.Headings", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#18:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#19:Google.Headings", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#19:Vale.Spelling", "modules/ROOT/pages/9.design/9k.Executor.adoc:#1:Capy.NoFluff", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#1:Google.Colons", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#1:Google.EmDash", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#1:Google.FirstPerson", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#1:Google.Headings", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#1:Google.Latin", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#20:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#21:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#22:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#23:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#24:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#25:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#26:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#27:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#28:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#29:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#2:Google.EmDash", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#2:Google.Headings", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#30:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#31:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#32:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#33:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#34:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#35:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#36:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#37:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#38:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#39:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#3:Google.EmDash", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#3:Google.Headings", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#40:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#41:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#42:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#43:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#44:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#45:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#46:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#47:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#48:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#49:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#4:Google.EmDash", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#4:Google.Headings", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#50:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#51:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#52:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#53:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#54:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#55:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#56:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#57:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#58:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#59:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#5:Google.EmDash", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#5:Google.Headings", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#60:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#61:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#62:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#63:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#64:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#65:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#66:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#67:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#68:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#69:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#6:Google.EmDash", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#6:Google.Headings", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#70:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#71:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#72:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#73:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#74:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#75:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#76:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#77:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#78:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#79:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#7:Google.EmDash", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#7:Google.Headings", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#80:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#8:Google.EmDash", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#8:Google.Headings", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#9:Google.EmDash", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#9:Google.Headings", - "modules/ROOT/pages/9.design/9k.Executor.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#10:Google.EmDash", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#10:Google.Headings", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#11:Google.Headings", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#12:Google.Headings", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#16:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#17:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#18:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#19:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#1:Capy.Terminology", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#1:Google.EmDash", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#1:Google.FirstPerson", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#1:Google.Headings", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#1:Google.Will", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#20:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#21:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#22:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#23:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#24:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#25:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#26:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#27:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#28:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#29:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#2:Capy.Terminology", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#2:Google.EmDash", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#2:Google.Headings", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#30:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#31:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#32:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#33:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#34:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#35:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#36:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#3:Capy.Terminology", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#3:Google.EmDash", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#3:Google.Headings", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#4:Capy.Terminology", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#4:Google.EmDash", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#4:Google.Headings", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#5:Capy.Terminology", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#5:Google.EmDash", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#5:Google.Headings", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#6:Capy.Terminology", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#6:Google.EmDash", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#6:Google.Headings", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#7:Capy.Terminology", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#7:Google.EmDash", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#7:Google.Headings", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#8:Capy.Terminology", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#8:Google.EmDash", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#8:Google.Headings", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#9:Google.EmDash", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#9:Google.Headings", - "modules/ROOT/pages/9.design/9l.RunApi.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#100:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#101:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#102:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#103:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#104:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#105:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#106:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#107:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#108:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#109:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#10:Google.EmDash", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#10:Google.Headings", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#10:Google.Quotes", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#110:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#111:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#112:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#113:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#114:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#115:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#116:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#117:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#118:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#119:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#11:Google.EmDash", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#11:Google.Headings", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#120:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#121:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#122:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#123:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#124:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#125:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#126:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#127:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#128:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#129:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#12:Google.EmDash", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#12:Google.Headings", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#130:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#131:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#132:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#133:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#134:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#135:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#136:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#137:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#138:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#139:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#13:Google.EmDash", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#13:Google.Headings", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#140:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#141:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#142:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#143:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#144:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#145:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#146:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#147:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#148:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#149:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#14:Google.EmDash", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#14:Google.Headings", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#150:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#151:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#152:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#153:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#154:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#155:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#156:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#157:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#15:Google.Headings", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#16:Google.Headings", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#16:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#17:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#18:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#19:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#1:Google.EmDash", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#1:Google.Headings", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#1:Google.Quotes", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#1:Google.Spacing", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#1:Google.We", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#1:Google.WordList", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#20:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#21:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#22:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#23:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#24:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#25:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#26:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#27:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#28:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#29:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#2:Google.EmDash", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#2:Google.Headings", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#2:Google.Quotes", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#2:Google.Spacing", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#2:Google.We", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#2:Google.WordList", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#30:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#31:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#32:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#33:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#34:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#35:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#36:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#37:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#38:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#39:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#3:Google.EmDash", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#3:Google.Headings", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#3:Google.Quotes", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#3:Google.Spacing", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#3:Google.We", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#40:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#41:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#42:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#43:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#44:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#45:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#46:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#47:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#48:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#49:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#4:Google.EmDash", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#4:Google.Headings", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#4:Google.Quotes", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#4:Google.We", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#50:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#51:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#52:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#53:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#54:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#55:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#56:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#57:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#58:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#59:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#5:Google.EmDash", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#5:Google.Headings", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#5:Google.Quotes", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#60:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#61:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#62:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#63:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#64:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#65:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#66:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#67:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#68:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#69:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#6:Google.EmDash", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#6:Google.Headings", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#6:Google.Quotes", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#70:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#71:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#72:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#73:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#74:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#75:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#76:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#77:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#78:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#79:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#7:Google.EmDash", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#7:Google.Headings", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#7:Google.Quotes", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#80:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#81:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#82:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#83:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#84:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#85:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#86:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#87:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#88:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#89:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#8:Google.EmDash", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#8:Google.Headings", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#8:Google.Quotes", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#90:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#91:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#92:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#93:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#94:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#95:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#96:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#97:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#98:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#99:Vale.Spelling", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#9:Google.EmDash", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#9:Google.Headings", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#9:Google.Quotes", - "modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#16:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#17:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#18:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#19:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#1:Capy.NoFluff", + "modules/ROOT/pages/9.design/9k.Executor.adoc:#1:Google.OxfordComma", "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#1:Capy.Terminology", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#1:Google.EmDash", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#1:Google.Headings", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#1:Google.Latin", "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#1:Google.OxfordComma", "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#1:Google.Will", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#1:Google.WordList", "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#20:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#21:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#22:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#23:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#24:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#25:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#26:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#27:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#28:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#29:Vale.Spelling", "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#2:Capy.SimpleTense", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#2:Google.EmDash", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#2:Google.Headings", "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#2:Google.Will", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#30:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#31:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#32:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#33:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#34:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#35:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#36:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#37:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#38:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#39:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#3:Google.EmDash", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#3:Google.Headings", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#40:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#41:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#42:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#43:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#44:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#45:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#46:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#47:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#48:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#49:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#4:Google.EmDash", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#4:Google.Headings", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#50:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#51:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#52:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#53:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#54:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#55:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#56:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#57:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#58:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#59:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#5:Google.Headings", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#60:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#61:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#62:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#63:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#64:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#65:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#66:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#67:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#6:Google.Headings", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#7:Google.Headings", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#8:Google.Headings", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#100:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#101:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#102:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#103:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#104:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#105:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#106:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#107:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#108:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#109:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#10:Google.Headings", "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#110:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#111:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#112:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#113:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#114:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#115:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#116:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#11:Google.Headings", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#12:Google.Headings", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#13:Google.Headings", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#14:Google.Headings", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#15:Google.Headings", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#16:Google.Headings", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#16:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#17:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#18:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#19:Vale.Spelling", "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#1:Google.Colons", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#1:Google.Headings", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#1:Google.WordList", "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#20:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#21:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#22:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#23:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#24:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#25:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#26:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#27:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#28:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#29:Vale.Spelling", "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#2:Google.Colons", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#2:Google.Headings", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#2:Google.WordList", "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#30:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#31:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#32:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#33:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#34:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#35:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#36:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#37:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#38:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#39:Vale.Spelling", "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#3:Google.Colons", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#3:Google.Headings", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#3:Google.WordList", "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#40:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#41:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#42:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#43:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#44:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#45:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#46:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#47:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#48:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#49:Vale.Spelling", "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#4:Google.Colons", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#4:Google.Headings", "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#50:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#51:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#52:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#53:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#54:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#55:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#56:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#57:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#58:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#59:Vale.Spelling", "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#5:Google.Colons", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#5:Google.Headings", "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#60:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#61:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#62:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#63:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#64:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#65:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#66:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#67:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#68:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#69:Vale.Spelling", "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#6:Google.Colons", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#6:Google.Headings", "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#70:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#71:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#72:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#73:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#74:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#75:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#76:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#77:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#78:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#79:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#7:Google.Colons", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#7:Google.Headings", "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#80:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#81:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#82:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#83:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#84:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#85:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#86:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#87:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#88:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#89:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#8:Google.Colons", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#8:Google.Headings", "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#90:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#91:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#92:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#93:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#94:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#95:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#96:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#97:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#98:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#99:Vale.Spelling", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#9:Google.Headings", - "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/A.specification-methods/A.intro.adoc:#1:Google.Headings", - "modules/ROOT/pages/A.specification-methods/Ab.cancellation.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/A.specification-methods/Ac.contingencies.adoc:#1:Capy.NoFluff", - "modules/ROOT/pages/A.specification-methods/Ac.contingencies.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/A.specification-methods/Ac.contingencies.adoc:#1:Google.Will", - "modules/ROOT/pages/A.specification-methods/Ac.contingencies.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/A.specification-methods/Ac.contingencies.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/A.specification-methods/Ac.contingencies.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/A.specification-methods/Ac.contingencies.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/A.specification-methods/Ac.contingencies.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/A.specification-methods/Ac.contingencies.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/A.specification-methods/Ac.contingencies.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#10:Google.Headings", - "modules/ROOT/pages/index.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#11:Google.Headings", - "modules/ROOT/pages/index.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#12:Google.Headings", - "modules/ROOT/pages/index.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#16:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#17:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#18:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#19:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#1:Google.Headings", - "modules/ROOT/pages/index.adoc:#1:Google.Spacing", - "modules/ROOT/pages/index.adoc:#1:Google.WordList", - "modules/ROOT/pages/index.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#20:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#21:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#22:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#23:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#24:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#25:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#26:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#27:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#28:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#29:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#2:Google.Headings", - "modules/ROOT/pages/index.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#30:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#31:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#32:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#33:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#34:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#35:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#36:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#37:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#38:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#39:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#3:Google.Headings", - "modules/ROOT/pages/index.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#40:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#41:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#42:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#43:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#44:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#45:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#46:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#47:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#48:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#49:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#4:Google.Headings", - "modules/ROOT/pages/index.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#50:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#51:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#52:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#53:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#54:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#55:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#56:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#5:Google.Headings", - "modules/ROOT/pages/index.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#6:Google.Headings", - "modules/ROOT/pages/index.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#7:Google.Headings", - "modules/ROOT/pages/index.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#8:Google.Headings", - "modules/ROOT/pages/index.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/index.adoc:#9:Google.Headings", - "modules/ROOT/pages/index.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/quick-start.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/quick-start.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/quick-start.adoc:#1:Google.Headings", - "modules/ROOT/pages/quick-start.adoc:#1:Google.Will", - "modules/ROOT/pages/quick-start.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/quick-start.adoc:#2:Capy.SimpleTense", - "modules/ROOT/pages/quick-start.adoc:#2:Google.Headings", - "modules/ROOT/pages/quick-start.adoc:#2:Google.Will", - "modules/ROOT/pages/quick-start.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/quick-start.adoc:#3:Google.Headings", - "modules/ROOT/pages/quick-start.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/quick-start.adoc:#4:Google.Headings", - "modules/ROOT/pages/quick-start.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/quick-start.adoc:#5:Google.Headings", - "modules/ROOT/pages/quick-start.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/quick-start.adoc:#6:Google.Headings", - "modules/ROOT/pages/quick-start.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/quick-start.adoc:#7:Google.Headings", - "modules/ROOT/pages/quick-start.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/quick-start.adoc:#8:Google.Headings", - "modules/ROOT/pages/quick-start.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/quick-start.adoc:#9:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#10:Google.Headings", - "modules/ROOT/pages/why-capy.adoc:#10:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#11:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#12:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#13:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#14:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#15:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#16:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#17:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#18:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#19:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#1:Capy.SimpleTense", - "modules/ROOT/pages/why-capy.adoc:#1:Capy.Terminology", - "modules/ROOT/pages/why-capy.adoc:#1:Google.EmDash", - "modules/ROOT/pages/why-capy.adoc:#1:Google.Headings", - "modules/ROOT/pages/why-capy.adoc:#1:Google.Spacing", - "modules/ROOT/pages/why-capy.adoc:#1:Google.We", - "modules/ROOT/pages/why-capy.adoc:#1:Google.Will", - "modules/ROOT/pages/why-capy.adoc:#1:Google.WordList", - "modules/ROOT/pages/why-capy.adoc:#1:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#20:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#21:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#22:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#23:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#24:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#25:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#26:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#27:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#28:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#29:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#2:Capy.SimpleTense", - "modules/ROOT/pages/why-capy.adoc:#2:Capy.Terminology", - "modules/ROOT/pages/why-capy.adoc:#2:Google.Headings", - "modules/ROOT/pages/why-capy.adoc:#2:Google.Spacing", - "modules/ROOT/pages/why-capy.adoc:#2:Google.We", - "modules/ROOT/pages/why-capy.adoc:#2:Google.Will", - "modules/ROOT/pages/why-capy.adoc:#2:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#30:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#31:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#32:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#33:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#34:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#35:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#36:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#37:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#38:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#39:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#3:Capy.SimpleTense", - "modules/ROOT/pages/why-capy.adoc:#3:Google.Headings", - "modules/ROOT/pages/why-capy.adoc:#3:Google.Spacing", - "modules/ROOT/pages/why-capy.adoc:#3:Google.We", - "modules/ROOT/pages/why-capy.adoc:#3:Google.Will", - "modules/ROOT/pages/why-capy.adoc:#3:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#40:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#41:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#42:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#43:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#44:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#45:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#46:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#47:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#48:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#49:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#4:Google.Headings", - "modules/ROOT/pages/why-capy.adoc:#4:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#50:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#51:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#52:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#53:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#54:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#55:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#56:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#57:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#58:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#59:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#5:Google.Headings", - "modules/ROOT/pages/why-capy.adoc:#5:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#60:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#61:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#62:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#63:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#64:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#65:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#66:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#67:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#68:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#69:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#6:Google.Headings", - "modules/ROOT/pages/why-capy.adoc:#6:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#70:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#71:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#72:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#73:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#74:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#75:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#76:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#77:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#78:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#79:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#7:Google.Headings", - "modules/ROOT/pages/why-capy.adoc:#7:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#80:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#81:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#82:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#83:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#8:Google.Headings", - "modules/ROOT/pages/why-capy.adoc:#8:Vale.Spelling", - "modules/ROOT/pages/why-capy.adoc:#9:Google.Headings", - "modules/ROOT/pages/why-capy.adoc:#9:Vale.Spelling" + "modules/ROOT/pages/9.design/9o.WhyNotTMC.adoc:#9:Vale.Spelling" ] }, "vale_docstrings": { - "count": 1477, + "count": 275, "skipped": false, "fingerprints": [ - "lint/.docstrings/buffers.hpp.adoc:#10:Google.Colons", - "lint/.docstrings/buffers.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/buffers.hpp.adoc:#11:Vale.Spelling", - "lint/.docstrings/buffers.hpp.adoc:#12:Vale.Spelling", - "lint/.docstrings/buffers.hpp.adoc:#13:Vale.Spelling", - "lint/.docstrings/buffers.hpp.adoc:#1:Google.Colons", "lint/.docstrings/buffers.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/buffers.hpp.adoc:#2:Google.Colons", "lint/.docstrings/buffers.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/buffers.hpp.adoc:#3:Google.Colons", "lint/.docstrings/buffers.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/buffers.hpp.adoc:#4:Google.Colons", "lint/.docstrings/buffers.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/buffers.hpp.adoc:#5:Google.Colons", "lint/.docstrings/buffers.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/buffers.hpp.adoc:#6:Google.Colons", "lint/.docstrings/buffers.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/buffers.hpp.adoc:#7:Google.Colons", - "lint/.docstrings/buffers.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/buffers.hpp.adoc:#8:Google.Colons", - "lint/.docstrings/buffers.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/buffers.hpp.adoc:#9:Google.Colons", - "lint/.docstrings/buffers.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/buffers/asio.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/buffers/asio.hpp.adoc:#11:Vale.Spelling", - "lint/.docstrings/buffers/asio.hpp.adoc:#12:Vale.Spelling", - "lint/.docstrings/buffers/asio.hpp.adoc:#13:Vale.Spelling", - "lint/.docstrings/buffers/asio.hpp.adoc:#14:Vale.Spelling", - "lint/.docstrings/buffers/asio.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/buffers/asio.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/buffers/asio.hpp.adoc:#2:Google.Colons", - "lint/.docstrings/buffers/asio.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/buffers/asio.hpp.adoc:#3:Google.Colons", - "lint/.docstrings/buffers/asio.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/buffers/asio.hpp.adoc:#4:Google.Colons", - "lint/.docstrings/buffers/asio.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/buffers/asio.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/buffers/asio.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/buffers/asio.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/buffers/asio.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/buffers/asio.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/buffers/buffer_copy.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/buffers/buffer_copy.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/buffers/buffer_copy.hpp.adoc:#2:Google.Colons", - "lint/.docstrings/buffers/buffer_copy.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/buffers/buffer_copy.hpp.adoc:#3:Google.Colons", - "lint/.docstrings/buffers/buffer_copy.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/buffers/buffer_param.hpp.adoc:#1:Google.Colons", "lint/.docstrings/buffers/buffer_param.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/buffers/buffer_param.hpp.adoc:#2:Google.Colons", - "lint/.docstrings/buffers/buffer_param.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/buffers/buffer_param.hpp.adoc:#3:Google.Colons", - "lint/.docstrings/buffers/buffer_param.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/buffers/buffer_param.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/buffers/buffer_param.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/buffers/buffer_param.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/buffers/buffer_param.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/buffers/buffer_slice.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/buffers/buffer_slice.hpp.adoc:#1:Google.EmDash", "lint/.docstrings/buffers/buffer_slice.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/buffers/buffer_slice.hpp.adoc:#2:Google.Colons", "lint/.docstrings/buffers/buffer_slice.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/buffers/buffer_slice.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/buffers/buffer_slice.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/buffers/consuming_buffers.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/buffers/consuming_buffers.hpp.adoc:#1:Google.EmDash", "lint/.docstrings/buffers/consuming_buffers.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/buffers/consuming_buffers.hpp.adoc:#2:Google.Colons", "lint/.docstrings/buffers/consuming_buffers.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/buffers/front.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/buffers/front.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/buffers/front.hpp.adoc:#2:Google.Colons", - "lint/.docstrings/buffers/front.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/buffers/front.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#10:Google.Colons", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#11:Google.Colons", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#11:Vale.Spelling", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#12:Google.Colons", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#12:Vale.Spelling", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#13:Google.Colons", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#13:Vale.Spelling", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#14:Google.Colons", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#15:Google.Colons", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#16:Google.Colons", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#17:Google.Colons", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#18:Google.Colons", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#19:Google.Colons", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#1:Google.Colons", "lint/.docstrings/buffers/make_buffer.hpp.adoc:#1:Google.LyHyphens", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#20:Google.Colons", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#21:Google.Colons", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#22:Google.Colons", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#23:Google.Colons", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#2:Google.Colons", + "lint/.docstrings/buffers/make_buffer.hpp.adoc:#1:Google.OxfordComma", "lint/.docstrings/buffers/make_buffer.hpp.adoc:#2:Google.LyHyphens", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#3:Google.Colons", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#4:Google.Colons", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#5:Google.Colons", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#6:Google.Colons", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#7:Google.Colons", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#8:Google.Colons", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#9:Google.Colons", - "lint/.docstrings/buffers/make_buffer.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/concept/decomposes_to.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/concept/decomposes_to.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/concept/decomposes_to.hpp.adoc:#2:Google.Colons", - "lint/.docstrings/concept/decomposes_to.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/concept/decomposes_to.hpp.adoc:#3:Google.Colons", - "lint/.docstrings/concept/decomposes_to.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/concept/decomposes_to.hpp.adoc:#4:Google.Colons", - "lint/.docstrings/concept/decomposes_to.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/concept/decomposes_to.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/concept/decomposes_to.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/concept/decomposes_to.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/concept/execution_context.hpp.adoc:#1:Google.Colons", + "lint/.docstrings/concept/buffer_archetype.hpp.adoc:#1:Vale.Spelling", + "lint/.docstrings/concept/buffer_archetype.hpp.adoc:#2:Vale.Spelling", + "lint/.docstrings/concept/buffer_archetype.hpp.adoc:#3:Vale.Spelling", "lint/.docstrings/concept/execution_context.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/concept/execution_context.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/concept/executor.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/concept/executor.hpp.adoc:#11:Vale.Spelling", - "lint/.docstrings/concept/executor.hpp.adoc:#12:Vale.Spelling", - "lint/.docstrings/concept/executor.hpp.adoc:#13:Vale.Spelling", - "lint/.docstrings/concept/executor.hpp.adoc:#14:Vale.Spelling", - "lint/.docstrings/concept/executor.hpp.adoc:#15:Vale.Spelling", - "lint/.docstrings/concept/executor.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/concept/executor.hpp.adoc:#1:Google.Latin", "lint/.docstrings/concept/executor.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/concept/executor.hpp.adoc:#2:Google.Colons", - "lint/.docstrings/concept/executor.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/concept/executor.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/concept/executor.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/concept/executor.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/concept/executor.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/concept/executor.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/concept/executor.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/concept/executor.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/concept/io_awaitable.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/concept/io_awaitable.hpp.adoc:#11:Vale.Spelling", - "lint/.docstrings/concept/io_awaitable.hpp.adoc:#12:Vale.Spelling", - "lint/.docstrings/concept/io_awaitable.hpp.adoc:#13:Vale.Spelling", - "lint/.docstrings/concept/io_awaitable.hpp.adoc:#14:Vale.Spelling", - "lint/.docstrings/concept/io_awaitable.hpp.adoc:#15:Vale.Spelling", - "lint/.docstrings/concept/io_awaitable.hpp.adoc:#16:Vale.Spelling", - "lint/.docstrings/concept/io_awaitable.hpp.adoc:#17:Vale.Spelling", - "lint/.docstrings/concept/io_awaitable.hpp.adoc:#18:Vale.Spelling", - "lint/.docstrings/concept/io_awaitable.hpp.adoc:#19:Vale.Spelling", "lint/.docstrings/concept/io_awaitable.hpp.adoc:#1:Capy.Terminology", "lint/.docstrings/concept/io_awaitable.hpp.adoc:#1:Google.Colons", "lint/.docstrings/concept/io_awaitable.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/concept/io_awaitable.hpp.adoc:#20:Vale.Spelling", - "lint/.docstrings/concept/io_awaitable.hpp.adoc:#21:Vale.Spelling", - "lint/.docstrings/concept/io_awaitable.hpp.adoc:#22:Vale.Spelling", - "lint/.docstrings/concept/io_awaitable.hpp.adoc:#23:Vale.Spelling", - "lint/.docstrings/concept/io_awaitable.hpp.adoc:#24:Vale.Spelling", - "lint/.docstrings/concept/io_awaitable.hpp.adoc:#25:Vale.Spelling", "lint/.docstrings/concept/io_awaitable.hpp.adoc:#2:Google.Colons", "lint/.docstrings/concept/io_awaitable.hpp.adoc:#2:Vale.Spelling", "lint/.docstrings/concept/io_awaitable.hpp.adoc:#3:Google.Colons", @@ -2626,403 +133,63 @@ "lint/.docstrings/concept/io_awaitable.hpp.adoc:#7:Vale.Spelling", "lint/.docstrings/concept/io_awaitable.hpp.adoc:#8:Vale.Spelling", "lint/.docstrings/concept/io_awaitable.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/concept/io_runnable.hpp.adoc:#1:Capy.Terminology", - "lint/.docstrings/concept/io_runnable.hpp.adoc:#1:Google.Colons", "lint/.docstrings/concept/io_runnable.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/concept/io_runnable.hpp.adoc:#2:Capy.Terminology", "lint/.docstrings/concept/io_runnable.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/concept/io_runnable.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/concept/io_runnable.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/concept/io_runnable.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/concept/io_runnable.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/concept/io_runnable.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/concept/io_runnable.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/concept/io_runnable.hpp.adoc:#9:Vale.Spelling", "lint/.docstrings/concept/read_stream.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/concept/read_stream.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/concept/read_stream.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/concept/read_stream.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/concept/read_stream.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/concept/read_stream.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/concept/read_stream.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/concept/read_stream.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/concept/read_stream.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/concept/write_stream.hpp.adoc:#1:Google.Colons", "lint/.docstrings/concept/write_stream.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/concept/write_stream.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/concept/write_stream.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/concept/write_stream.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/concept/write_stream.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/concept/write_stream.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/concept/write_stream.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/concept/write_stream.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/concept/write_stream.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/cond.hpp.adoc:#1:Google.Latin", "lint/.docstrings/cond.hpp.adoc:#1:Vale.Spelling", "lint/.docstrings/cond.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/cond.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/continuation.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/continuation.hpp.adoc:#11:Vale.Spelling", - "lint/.docstrings/continuation.hpp.adoc:#1:Google.EmDash", - "lint/.docstrings/continuation.hpp.adoc:#1:Google.Latin", "lint/.docstrings/continuation.hpp.adoc:#1:Google.LyHyphens", "lint/.docstrings/continuation.hpp.adoc:#1:Google.OxfordComma", - "lint/.docstrings/continuation.hpp.adoc:#1:Google.WordList", "lint/.docstrings/continuation.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/continuation.hpp.adoc:#2:Google.EmDash", - "lint/.docstrings/continuation.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/continuation.hpp.adoc:#3:Google.EmDash", - "lint/.docstrings/continuation.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/continuation.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/continuation.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/continuation.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/continuation.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/continuation.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/continuation.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/detail/await_suspend_helper.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/detail/await_suspend_helper.hpp.adoc:#1:Google.Latin", - "lint/.docstrings/detail/await_suspend_helper.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/detail/await_suspend_helper.hpp.adoc:#2:Google.Latin", - "lint/.docstrings/detail/await_suspend_helper.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/detail/await_suspend_helper.hpp.adoc:#3:Google.Latin", - "lint/.docstrings/detail/await_suspend_helper.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/detail/await_suspend_helper.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/detail/await_suspend_helper.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/detail/buffer_array.hpp.adoc:#10:Google.Colons", - "lint/.docstrings/detail/buffer_array.hpp.adoc:#11:Google.Colons", - "lint/.docstrings/detail/buffer_array.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/detail/buffer_array.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/detail/buffer_array.hpp.adoc:#2:Google.Colons", - "lint/.docstrings/detail/buffer_array.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/detail/buffer_array.hpp.adoc:#3:Google.Colons", - "lint/.docstrings/detail/buffer_array.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/detail/buffer_array.hpp.adoc:#4:Google.Colons", - "lint/.docstrings/detail/buffer_array.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/detail/buffer_array.hpp.adoc:#5:Google.Colons", - "lint/.docstrings/detail/buffer_array.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/detail/buffer_array.hpp.adoc:#6:Google.Colons", - "lint/.docstrings/detail/buffer_array.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/detail/buffer_array.hpp.adoc:#7:Google.Colons", - "lint/.docstrings/detail/buffer_array.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/detail/buffer_array.hpp.adoc:#8:Google.Colons", - "lint/.docstrings/detail/buffer_array.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/detail/buffer_array.hpp.adoc:#9:Google.Colons", - "lint/.docstrings/detail/buffer_array.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/detail/frame_memory_resource.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/detail/frame_memory_resource.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/detail/frame_memory_resource.hpp.adoc:#2:Google.Colons", - "lint/.docstrings/detail/frame_memory_resource.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/detail/intrusive.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/detail/intrusive.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/detail/intrusive.hpp.adoc:#2:Google.Colons", - "lint/.docstrings/detail/intrusive.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/detail/intrusive.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/detail/slice_of.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/detail/slice_of.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/detail/slice_of.hpp.adoc:#2:Google.Colons", - "lint/.docstrings/detail/slice_of.hpp.adoc:#3:Google.Colons", - "lint/.docstrings/detail/slice_of.hpp.adoc:#4:Google.Colons", - "lint/.docstrings/detail/thread_local_ptr.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/detail/thread_local_ptr.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/detail/thread_local_ptr.hpp.adoc:#2:Google.Colons", - "lint/.docstrings/detail/thread_local_ptr.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/detail/thread_local_ptr.hpp.adoc:#3:Google.Colons", - "lint/.docstrings/detail/thread_local_ptr.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/detail/thread_local_ptr.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/detail/thread_local_ptr.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/detail/thread_local_ptr.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/detail/thread_local_ptr.hpp.adoc:#7:Vale.Spelling", "lint/.docstrings/error.hpp.adoc:#1:Vale.Spelling", "lint/.docstrings/error.hpp.adoc:#2:Vale.Spelling", "lint/.docstrings/error.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/error.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/error.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/error.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/ex/any_executor.hpp.adoc:#1:Capy.NoFluff", - "lint/.docstrings/ex/any_executor.hpp.adoc:#1:Google.Colons", "lint/.docstrings/ex/any_executor.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/ex/any_executor.hpp.adoc:#2:Google.Colons", "lint/.docstrings/ex/any_executor.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/ex/any_executor.hpp.adoc:#3:Google.Colons", - "lint/.docstrings/ex/any_executor.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/ex/any_executor.hpp.adoc:#4:Google.Colons", - "lint/.docstrings/ex/any_executor.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/ex/any_executor.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/ex/any_executor.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/ex/any_executor.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/ex/any_executor.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/ex/async_event.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/ex/async_event.hpp.adoc:#1:Capy.SimpleTense", - "lint/.docstrings/ex/async_event.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/ex/async_event.hpp.adoc:#1:Google.Will", "lint/.docstrings/ex/async_event.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/ex/async_event.hpp.adoc:#2:Google.Colons", - "lint/.docstrings/ex/async_event.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/ex/async_event.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/ex/async_event.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/ex/async_event.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/ex/async_event.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/ex/async_event.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/ex/async_event.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/ex/async_event.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#11:Vale.Spelling", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#12:Vale.Spelling", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#13:Vale.Spelling", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#14:Vale.Spelling", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#15:Vale.Spelling", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#16:Vale.Spelling", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#17:Vale.Spelling", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#18:Vale.Spelling", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#19:Vale.Spelling", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#20:Vale.Spelling", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#21:Vale.Spelling", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#22:Vale.Spelling", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#23:Vale.Spelling", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#24:Vale.Spelling", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#25:Vale.Spelling", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#26:Vale.Spelling", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#2:Google.Colons", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/ex/async_mutex.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/ex/async_waker.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/ex/async_waker.hpp.adoc:#11:Vale.Spelling", - "lint/.docstrings/ex/async_waker.hpp.adoc:#12:Vale.Spelling", - "lint/.docstrings/ex/async_waker.hpp.adoc:#13:Vale.Spelling", - "lint/.docstrings/ex/async_waker.hpp.adoc:#14:Vale.Spelling", - "lint/.docstrings/ex/async_waker.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/ex/async_waker.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/ex/async_waker.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/ex/async_waker.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/ex/async_waker.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/ex/async_waker.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/ex/async_waker.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/ex/async_waker.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/ex/async_waker.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/ex/async_waker.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/ex/detail/strand_service.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/ex/detail/strand_service.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/ex/detail/strand_service.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/ex/detail/strand_service.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/ex/detail/strand_service.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/ex/detail/strand_service.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/ex/detail/strand_service.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/ex/execution_context.hpp.adoc:#10:Google.Colons", - "lint/.docstrings/ex/execution_context.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/ex/execution_context.hpp.adoc:#11:Vale.Spelling", - "lint/.docstrings/ex/execution_context.hpp.adoc:#12:Vale.Spelling", - "lint/.docstrings/ex/execution_context.hpp.adoc:#13:Vale.Spelling", - "lint/.docstrings/ex/execution_context.hpp.adoc:#14:Vale.Spelling", - "lint/.docstrings/ex/execution_context.hpp.adoc:#15:Vale.Spelling", - "lint/.docstrings/ex/execution_context.hpp.adoc:#16:Vale.Spelling", - "lint/.docstrings/ex/execution_context.hpp.adoc:#17:Vale.Spelling", - "lint/.docstrings/ex/execution_context.hpp.adoc:#1:Capy.SimpleTense", - "lint/.docstrings/ex/execution_context.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/ex/execution_context.hpp.adoc:#1:Google.Latin", - "lint/.docstrings/ex/execution_context.hpp.adoc:#1:Google.WordList", "lint/.docstrings/ex/execution_context.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/ex/execution_context.hpp.adoc:#2:Google.Colons", "lint/.docstrings/ex/execution_context.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/ex/execution_context.hpp.adoc:#3:Google.Colons", "lint/.docstrings/ex/execution_context.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/ex/execution_context.hpp.adoc:#4:Google.Colons", "lint/.docstrings/ex/execution_context.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/ex/execution_context.hpp.adoc:#5:Google.Colons", "lint/.docstrings/ex/execution_context.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/ex/execution_context.hpp.adoc:#6:Google.Colons", "lint/.docstrings/ex/execution_context.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/ex/execution_context.hpp.adoc:#7:Google.Colons", "lint/.docstrings/ex/execution_context.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/ex/execution_context.hpp.adoc:#8:Google.Colons", - "lint/.docstrings/ex/execution_context.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/ex/execution_context.hpp.adoc:#9:Google.Colons", - "lint/.docstrings/ex/execution_context.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/ex/executor_ref.hpp.adoc:#1:Capy.NoFluff", - "lint/.docstrings/ex/executor_ref.hpp.adoc:#1:Google.Colons", "lint/.docstrings/ex/executor_ref.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/ex/executor_ref.hpp.adoc:#2:Google.Colons", "lint/.docstrings/ex/executor_ref.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/ex/executor_ref.hpp.adoc:#3:Google.Colons", - "lint/.docstrings/ex/executor_ref.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/ex/executor_ref.hpp.adoc:#4:Google.Colons", - "lint/.docstrings/ex/executor_ref.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/ex/executor_ref.hpp.adoc:#5:Google.Colons", - "lint/.docstrings/ex/executor_ref.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/ex/executor_ref.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/ex/executor_ref.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/ex/executor_ref.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/ex/frame_alloc_mixin.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/ex/frame_alloc_mixin.hpp.adoc:#11:Vale.Spelling", - "lint/.docstrings/ex/frame_alloc_mixin.hpp.adoc:#12:Vale.Spelling", - "lint/.docstrings/ex/frame_alloc_mixin.hpp.adoc:#13:Vale.Spelling", - "lint/.docstrings/ex/frame_alloc_mixin.hpp.adoc:#14:Vale.Spelling", - "lint/.docstrings/ex/frame_alloc_mixin.hpp.adoc:#15:Vale.Spelling", - "lint/.docstrings/ex/frame_alloc_mixin.hpp.adoc:#16:Vale.Spelling", - "lint/.docstrings/ex/frame_alloc_mixin.hpp.adoc:#17:Vale.Spelling", - "lint/.docstrings/ex/frame_alloc_mixin.hpp.adoc:#1:Google.Colons", "lint/.docstrings/ex/frame_alloc_mixin.hpp.adoc:#1:Vale.Spelling", "lint/.docstrings/ex/frame_alloc_mixin.hpp.adoc:#2:Vale.Spelling", "lint/.docstrings/ex/frame_alloc_mixin.hpp.adoc:#3:Vale.Spelling", "lint/.docstrings/ex/frame_alloc_mixin.hpp.adoc:#4:Vale.Spelling", "lint/.docstrings/ex/frame_alloc_mixin.hpp.adoc:#5:Vale.Spelling", "lint/.docstrings/ex/frame_alloc_mixin.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/ex/frame_alloc_mixin.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/ex/frame_alloc_mixin.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/ex/frame_alloc_mixin.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/ex/frame_allocator.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/ex/frame_allocator.hpp.adoc:#11:Vale.Spelling", - "lint/.docstrings/ex/frame_allocator.hpp.adoc:#12:Vale.Spelling", - "lint/.docstrings/ex/frame_allocator.hpp.adoc:#13:Vale.Spelling", - "lint/.docstrings/ex/frame_allocator.hpp.adoc:#14:Vale.Spelling", - "lint/.docstrings/ex/frame_allocator.hpp.adoc:#15:Vale.Spelling", - "lint/.docstrings/ex/frame_allocator.hpp.adoc:#16:Vale.Spelling", - "lint/.docstrings/ex/frame_allocator.hpp.adoc:#17:Vale.Spelling", - "lint/.docstrings/ex/frame_allocator.hpp.adoc:#18:Vale.Spelling", - "lint/.docstrings/ex/frame_allocator.hpp.adoc:#19:Vale.Spelling", - "lint/.docstrings/ex/frame_allocator.hpp.adoc:#1:Capy.SimpleTense", - "lint/.docstrings/ex/frame_allocator.hpp.adoc:#1:Capy.Terminology", - "lint/.docstrings/ex/frame_allocator.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/ex/frame_allocator.hpp.adoc:#1:Google.Latin", - "lint/.docstrings/ex/frame_allocator.hpp.adoc:#1:Google.Will", "lint/.docstrings/ex/frame_allocator.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/ex/frame_allocator.hpp.adoc:#20:Vale.Spelling", - "lint/.docstrings/ex/frame_allocator.hpp.adoc:#21:Vale.Spelling", - "lint/.docstrings/ex/frame_allocator.hpp.adoc:#22:Vale.Spelling", - "lint/.docstrings/ex/frame_allocator.hpp.adoc:#23:Vale.Spelling", - "lint/.docstrings/ex/frame_allocator.hpp.adoc:#24:Vale.Spelling", - "lint/.docstrings/ex/frame_allocator.hpp.adoc:#2:Capy.SimpleTense", - "lint/.docstrings/ex/frame_allocator.hpp.adoc:#2:Google.Colons", "lint/.docstrings/ex/frame_allocator.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/ex/frame_allocator.hpp.adoc:#3:Capy.SimpleTense", "lint/.docstrings/ex/frame_allocator.hpp.adoc:#3:Vale.Spelling", "lint/.docstrings/ex/frame_allocator.hpp.adoc:#4:Vale.Spelling", "lint/.docstrings/ex/frame_allocator.hpp.adoc:#5:Vale.Spelling", "lint/.docstrings/ex/frame_allocator.hpp.adoc:#6:Vale.Spelling", "lint/.docstrings/ex/frame_allocator.hpp.adoc:#7:Vale.Spelling", "lint/.docstrings/ex/frame_allocator.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/ex/frame_allocator.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#10:Google.Colons", "lint/.docstrings/ex/immediate.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#11:Google.Colons", "lint/.docstrings/ex/immediate.hpp.adoc:#11:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#12:Google.Colons", "lint/.docstrings/ex/immediate.hpp.adoc:#12:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#13:Google.Colons", "lint/.docstrings/ex/immediate.hpp.adoc:#13:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#14:Google.Colons", "lint/.docstrings/ex/immediate.hpp.adoc:#14:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#15:Google.Colons", "lint/.docstrings/ex/immediate.hpp.adoc:#15:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#16:Google.Colons", - "lint/.docstrings/ex/immediate.hpp.adoc:#16:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#17:Google.Colons", - "lint/.docstrings/ex/immediate.hpp.adoc:#17:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#18:Google.Colons", - "lint/.docstrings/ex/immediate.hpp.adoc:#18:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#19:Google.Colons", - "lint/.docstrings/ex/immediate.hpp.adoc:#19:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#1:Google.Colons", "lint/.docstrings/ex/immediate.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#20:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#21:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#22:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#23:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#24:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#25:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#26:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#27:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#28:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#29:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#2:Google.Colons", "lint/.docstrings/ex/immediate.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#30:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#31:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#32:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#33:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#34:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#35:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#36:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#37:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#38:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#39:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#3:Google.Colons", "lint/.docstrings/ex/immediate.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#40:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#41:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#42:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#43:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#44:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#45:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#4:Google.Colons", "lint/.docstrings/ex/immediate.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#5:Google.Colons", "lint/.docstrings/ex/immediate.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#6:Google.Colons", "lint/.docstrings/ex/immediate.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#7:Google.Colons", "lint/.docstrings/ex/immediate.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#8:Google.Colons", "lint/.docstrings/ex/immediate.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/ex/immediate.hpp.adoc:#9:Google.Colons", "lint/.docstrings/ex/immediate.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#11:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#12:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#13:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#14:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#15:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#16:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#17:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#18:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#19:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#1:Capy.SimpleTense", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#1:Google.Latin", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#1:Google.Will", "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#20:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#21:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#22:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#23:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#24:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#25:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#26:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#27:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#28:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#29:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#2:Google.Colons", "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#30:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#31:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#32:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#33:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#34:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#3:Google.Colons", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#4:Google.Colons", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#5:Google.Colons", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/ex/io_awaitable_promise_base.hpp.adoc:#9:Vale.Spelling", "lint/.docstrings/ex/io_env.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/ex/io_env.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/ex/io_env.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/ex/io_env.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/ex/io_env.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/ex/io_env.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/ex/io_env.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/ex/io_env.hpp.adoc:#8:Vale.Spelling", + "lint/.docstrings/ex/recycling_memory_resource.hpp.adoc:#10:Vale.Spelling", "lint/.docstrings/ex/recycling_memory_resource.hpp.adoc:#1:Vale.Spelling", "lint/.docstrings/ex/recycling_memory_resource.hpp.adoc:#2:Vale.Spelling", "lint/.docstrings/ex/recycling_memory_resource.hpp.adoc:#3:Vale.Spelling", @@ -3032,211 +199,37 @@ "lint/.docstrings/ex/recycling_memory_resource.hpp.adoc:#7:Vale.Spelling", "lint/.docstrings/ex/recycling_memory_resource.hpp.adoc:#8:Vale.Spelling", "lint/.docstrings/ex/recycling_memory_resource.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/ex/run.hpp.adoc:#10:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/ex/run.hpp.adoc:#11:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#11:Vale.Spelling", - "lint/.docstrings/ex/run.hpp.adoc:#12:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#12:Vale.Spelling", - "lint/.docstrings/ex/run.hpp.adoc:#13:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#13:Vale.Spelling", - "lint/.docstrings/ex/run.hpp.adoc:#14:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#14:Vale.Spelling", - "lint/.docstrings/ex/run.hpp.adoc:#15:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#15:Vale.Spelling", - "lint/.docstrings/ex/run.hpp.adoc:#16:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#16:Vale.Spelling", - "lint/.docstrings/ex/run.hpp.adoc:#17:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#17:Vale.Spelling", - "lint/.docstrings/ex/run.hpp.adoc:#18:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#18:Vale.Spelling", - "lint/.docstrings/ex/run.hpp.adoc:#19:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#19:Vale.Spelling", - "lint/.docstrings/ex/run.hpp.adoc:#1:Google.Colons", "lint/.docstrings/ex/run.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/ex/run.hpp.adoc:#20:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#20:Vale.Spelling", - "lint/.docstrings/ex/run.hpp.adoc:#21:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#21:Vale.Spelling", - "lint/.docstrings/ex/run.hpp.adoc:#22:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#22:Vale.Spelling", - "lint/.docstrings/ex/run.hpp.adoc:#23:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#23:Vale.Spelling", - "lint/.docstrings/ex/run.hpp.adoc:#24:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#25:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#26:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#27:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#28:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#29:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#2:Google.Colons", "lint/.docstrings/ex/run.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/ex/run.hpp.adoc:#30:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#31:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#32:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#3:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/ex/run.hpp.adoc:#4:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/ex/run.hpp.adoc:#5:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/ex/run.hpp.adoc:#6:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/ex/run.hpp.adoc:#7:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/ex/run.hpp.adoc:#8:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/ex/run.hpp.adoc:#9:Google.Colons", - "lint/.docstrings/ex/run.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#10:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#11:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#11:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#12:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#12:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#13:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#13:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#14:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#14:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#15:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#15:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#16:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#16:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#17:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#17:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#18:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#18:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#19:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#19:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#1:Capy.SimpleTense", - "lint/.docstrings/ex/run_async.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#1:Google.Will", "lint/.docstrings/ex/run_async.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#20:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#20:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#21:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#21:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#22:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#22:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#23:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#23:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#24:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#24:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#25:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#25:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#26:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#26:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#27:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#27:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#28:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#28:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#29:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#29:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#2:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#30:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#30:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#31:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#31:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#32:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#32:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#33:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#33:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#34:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#34:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#35:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#35:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#36:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#36:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#37:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#37:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#38:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#38:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#39:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#39:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#3:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#40:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#40:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#41:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#41:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#42:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#42:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#43:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#43:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#44:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#44:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#45:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#45:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#46:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#46:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#47:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#47:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#48:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#48:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#49:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#49:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#4:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#50:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#50:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#51:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#52:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#53:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#54:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#55:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#56:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#57:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#58:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#59:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#5:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#60:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#61:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#62:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#63:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#64:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#65:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#66:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#67:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#68:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#69:Google.Colons", - "lint/.docstrings/ex/run_async.hpp.adoc:#6:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#7:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#8:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/ex/run_async.hpp.adoc:#9:Google.Colons", "lint/.docstrings/ex/run_async.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/ex/strand.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/ex/strand.hpp.adoc:#11:Vale.Spelling", - "lint/.docstrings/ex/strand.hpp.adoc:#12:Vale.Spelling", - "lint/.docstrings/ex/strand.hpp.adoc:#13:Vale.Spelling", - "lint/.docstrings/ex/strand.hpp.adoc:#14:Vale.Spelling", - "lint/.docstrings/ex/strand.hpp.adoc:#15:Vale.Spelling", - "lint/.docstrings/ex/strand.hpp.adoc:#1:Capy.SimpleTense", - "lint/.docstrings/ex/strand.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/ex/strand.hpp.adoc:#1:Google.EmDash", - "lint/.docstrings/ex/strand.hpp.adoc:#1:Google.Will", - "lint/.docstrings/ex/strand.hpp.adoc:#1:Google.WordList", "lint/.docstrings/ex/strand.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/ex/strand.hpp.adoc:#2:Capy.SimpleTense", - "lint/.docstrings/ex/strand.hpp.adoc:#2:Google.Colons", - "lint/.docstrings/ex/strand.hpp.adoc:#2:Google.EmDash", - "lint/.docstrings/ex/strand.hpp.adoc:#2:Google.Will", - "lint/.docstrings/ex/strand.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/ex/strand.hpp.adoc:#3:Google.Colons", - "lint/.docstrings/ex/strand.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/ex/strand.hpp.adoc:#4:Google.Colons", - "lint/.docstrings/ex/strand.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/ex/strand.hpp.adoc:#5:Google.Colons", - "lint/.docstrings/ex/strand.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/ex/strand.hpp.adoc:#6:Google.Colons", - "lint/.docstrings/ex/strand.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/ex/strand.hpp.adoc:#7:Google.Colons", - "lint/.docstrings/ex/strand.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/ex/strand.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/ex/strand.hpp.adoc:#9:Vale.Spelling", "lint/.docstrings/ex/this_coro.hpp.adoc:#10:Vale.Spelling", "lint/.docstrings/ex/this_coro.hpp.adoc:#11:Vale.Spelling", "lint/.docstrings/ex/this_coro.hpp.adoc:#12:Vale.Spelling", @@ -3247,556 +240,117 @@ "lint/.docstrings/ex/this_coro.hpp.adoc:#17:Vale.Spelling", "lint/.docstrings/ex/this_coro.hpp.adoc:#18:Vale.Spelling", "lint/.docstrings/ex/this_coro.hpp.adoc:#19:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#1:Google.Latin", "lint/.docstrings/ex/this_coro.hpp.adoc:#1:Vale.Spelling", "lint/.docstrings/ex/this_coro.hpp.adoc:#20:Vale.Spelling", "lint/.docstrings/ex/this_coro.hpp.adoc:#21:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#22:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#23:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#24:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#25:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#26:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#27:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#28:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#29:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#2:Google.Latin", "lint/.docstrings/ex/this_coro.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#30:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#31:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#32:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#33:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#34:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#35:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#36:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#37:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#38:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#39:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#3:Google.Latin", "lint/.docstrings/ex/this_coro.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#40:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#41:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#42:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#43:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#44:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#45:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#46:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#47:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#48:Vale.Spelling", - "lint/.docstrings/ex/this_coro.hpp.adoc:#4:Google.Latin", "lint/.docstrings/ex/this_coro.hpp.adoc:#4:Vale.Spelling", "lint/.docstrings/ex/this_coro.hpp.adoc:#5:Vale.Spelling", "lint/.docstrings/ex/this_coro.hpp.adoc:#6:Vale.Spelling", "lint/.docstrings/ex/this_coro.hpp.adoc:#7:Vale.Spelling", "lint/.docstrings/ex/this_coro.hpp.adoc:#8:Vale.Spelling", "lint/.docstrings/ex/this_coro.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/ex/thread_pool.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/ex/thread_pool.hpp.adoc:#11:Vale.Spelling", - "lint/.docstrings/ex/thread_pool.hpp.adoc:#12:Vale.Spelling", - "lint/.docstrings/ex/thread_pool.hpp.adoc:#13:Vale.Spelling", - "lint/.docstrings/ex/thread_pool.hpp.adoc:#14:Vale.Spelling", - "lint/.docstrings/ex/thread_pool.hpp.adoc:#1:Capy.SimpleTense", - "lint/.docstrings/ex/thread_pool.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/ex/thread_pool.hpp.adoc:#1:Google.Quotes", - "lint/.docstrings/ex/thread_pool.hpp.adoc:#1:Google.Will", "lint/.docstrings/ex/thread_pool.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/ex/thread_pool.hpp.adoc:#2:Capy.SimpleTense", - "lint/.docstrings/ex/thread_pool.hpp.adoc:#2:Google.Colons", - "lint/.docstrings/ex/thread_pool.hpp.adoc:#2:Google.Quotes", - "lint/.docstrings/ex/thread_pool.hpp.adoc:#2:Google.Will", "lint/.docstrings/ex/thread_pool.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/ex/thread_pool.hpp.adoc:#3:Capy.SimpleTense", - "lint/.docstrings/ex/thread_pool.hpp.adoc:#3:Google.Colons", "lint/.docstrings/ex/thread_pool.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/ex/thread_pool.hpp.adoc:#4:Google.Colons", "lint/.docstrings/ex/thread_pool.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/ex/thread_pool.hpp.adoc:#5:Google.Colons", "lint/.docstrings/ex/thread_pool.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/ex/thread_pool.hpp.adoc:#6:Google.Colons", "lint/.docstrings/ex/thread_pool.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/ex/thread_pool.hpp.adoc:#7:Google.Colons", "lint/.docstrings/ex/thread_pool.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/ex/thread_pool.hpp.adoc:#8:Google.Colons", "lint/.docstrings/ex/thread_pool.hpp.adoc:#8:Vale.Spelling", "lint/.docstrings/ex/thread_pool.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/ex/work_guard.hpp.adoc:#1:Capy.SimpleTense", - "lint/.docstrings/ex/work_guard.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/ex/work_guard.hpp.adoc:#1:Google.Will", "lint/.docstrings/ex/work_guard.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/ex/work_guard.hpp.adoc:#2:Capy.SimpleTense", - "lint/.docstrings/ex/work_guard.hpp.adoc:#2:Google.Colons", - "lint/.docstrings/ex/work_guard.hpp.adoc:#2:Google.Will", "lint/.docstrings/ex/work_guard.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/ex/work_guard.hpp.adoc:#3:Google.Colons", - "lint/.docstrings/ex/work_guard.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/ex/work_guard.hpp.adoc:#4:Google.Colons", - "lint/.docstrings/ex/work_guard.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/ex/work_guard.hpp.adoc:#5:Google.Colons", - "lint/.docstrings/ex/work_guard.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/ex/work_guard.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/ex/work_guard.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/io/any_read_stream.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/io/any_read_stream.hpp.adoc:#11:Vale.Spelling", - "lint/.docstrings/io/any_read_stream.hpp.adoc:#12:Vale.Spelling", - "lint/.docstrings/io/any_read_stream.hpp.adoc:#13:Vale.Spelling", - "lint/.docstrings/io/any_read_stream.hpp.adoc:#14:Vale.Spelling", - "lint/.docstrings/io/any_read_stream.hpp.adoc:#15:Vale.Spelling", - "lint/.docstrings/io/any_read_stream.hpp.adoc:#16:Vale.Spelling", - "lint/.docstrings/io/any_read_stream.hpp.adoc:#17:Vale.Spelling", - "lint/.docstrings/io/any_read_stream.hpp.adoc:#1:Capy.SimpleTense", "lint/.docstrings/io/any_read_stream.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/io/any_read_stream.hpp.adoc:#1:Google.Latin", - "lint/.docstrings/io/any_read_stream.hpp.adoc:#1:Google.Will", "lint/.docstrings/io/any_read_stream.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/io/any_read_stream.hpp.adoc:#2:Capy.SimpleTense", - "lint/.docstrings/io/any_read_stream.hpp.adoc:#2:Google.Colons", "lint/.docstrings/io/any_read_stream.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/io/any_read_stream.hpp.adoc:#3:Google.Colons", "lint/.docstrings/io/any_read_stream.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/io/any_read_stream.hpp.adoc:#4:Google.Colons", "lint/.docstrings/io/any_read_stream.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/io/any_read_stream.hpp.adoc:#5:Google.Colons", - "lint/.docstrings/io/any_read_stream.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/io/any_read_stream.hpp.adoc:#6:Google.Colons", - "lint/.docstrings/io/any_read_stream.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/io/any_read_stream.hpp.adoc:#7:Google.Colons", - "lint/.docstrings/io/any_read_stream.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/io/any_read_stream.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/io/any_read_stream.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/io/any_stream.hpp.adoc:#1:Capy.SimpleTense", "lint/.docstrings/io/any_stream.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/io/any_stream.hpp.adoc:#1:Google.Will", "lint/.docstrings/io/any_stream.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/io/any_stream.hpp.adoc:#2:Google.Colons", "lint/.docstrings/io/any_stream.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/io/any_stream.hpp.adoc:#3:Google.Colons", "lint/.docstrings/io/any_stream.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/io/any_stream.hpp.adoc:#4:Google.Colons", "lint/.docstrings/io/any_stream.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/io/any_stream.hpp.adoc:#5:Google.Colons", "lint/.docstrings/io/any_stream.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/io/any_stream.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/io/any_stream.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/io/any_stream.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/io/any_write_stream.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/io/any_write_stream.hpp.adoc:#11:Vale.Spelling", - "lint/.docstrings/io/any_write_stream.hpp.adoc:#12:Vale.Spelling", - "lint/.docstrings/io/any_write_stream.hpp.adoc:#13:Vale.Spelling", - "lint/.docstrings/io/any_write_stream.hpp.adoc:#14:Vale.Spelling", - "lint/.docstrings/io/any_write_stream.hpp.adoc:#15:Vale.Spelling", - "lint/.docstrings/io/any_write_stream.hpp.adoc:#16:Vale.Spelling", - "lint/.docstrings/io/any_write_stream.hpp.adoc:#1:Capy.SimpleTense", "lint/.docstrings/io/any_write_stream.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/io/any_write_stream.hpp.adoc:#1:Google.Will", "lint/.docstrings/io/any_write_stream.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/io/any_write_stream.hpp.adoc:#2:Capy.SimpleTense", - "lint/.docstrings/io/any_write_stream.hpp.adoc:#2:Google.Colons", "lint/.docstrings/io/any_write_stream.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/io/any_write_stream.hpp.adoc:#3:Google.Colons", "lint/.docstrings/io/any_write_stream.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/io/any_write_stream.hpp.adoc:#4:Google.Colons", "lint/.docstrings/io/any_write_stream.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/io/any_write_stream.hpp.adoc:#5:Google.Colons", - "lint/.docstrings/io/any_write_stream.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/io/any_write_stream.hpp.adoc:#6:Google.Colons", - "lint/.docstrings/io/any_write_stream.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/io/any_write_stream.hpp.adoc:#7:Google.Colons", - "lint/.docstrings/io/any_write_stream.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/io/any_write_stream.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/io/any_write_stream.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/io/write_now.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/io/write_now.hpp.adoc:#11:Vale.Spelling", - "lint/.docstrings/io/write_now.hpp.adoc:#1:Capy.SimpleTense", - "lint/.docstrings/io/write_now.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/io/write_now.hpp.adoc:#1:Google.Latin", "lint/.docstrings/io/write_now.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/io/write_now.hpp.adoc:#2:Google.Colons", "lint/.docstrings/io/write_now.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/io/write_now.hpp.adoc:#3:Google.Colons", - "lint/.docstrings/io/write_now.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/io/write_now.hpp.adoc:#4:Google.Colons", - "lint/.docstrings/io/write_now.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/io/write_now.hpp.adoc:#5:Google.Colons", - "lint/.docstrings/io/write_now.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/io/write_now.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/io/write_now.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/io/write_now.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/io/write_now.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/io_result.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/io_result.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/io_task.hpp.adoc:#1:Google.Colons", "lint/.docstrings/io_task.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/io_task.hpp.adoc:#2:Vale.Spelling", "lint/.docstrings/quitter.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#11:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#12:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#13:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#14:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#15:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#16:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#17:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#18:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#19:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#1:Capy.SimpleTense", - "lint/.docstrings/quitter.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/quitter.hpp.adoc:#1:Google.EmDash", - "lint/.docstrings/quitter.hpp.adoc:#1:Google.Spacing", - "lint/.docstrings/quitter.hpp.adoc:#1:Google.Will", + "lint/.docstrings/quitter.hpp.adoc:#1:Google.OxfordComma", "lint/.docstrings/quitter.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#20:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#21:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#22:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#23:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#24:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#25:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#26:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#27:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#28:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#29:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#2:Google.Colons", - "lint/.docstrings/quitter.hpp.adoc:#2:Google.EmDash", - "lint/.docstrings/quitter.hpp.adoc:#2:Google.Spacing", "lint/.docstrings/quitter.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#30:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#31:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#32:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#33:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#34:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#35:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#36:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#37:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#38:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#39:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#3:Google.Colons", - "lint/.docstrings/quitter.hpp.adoc:#3:Google.EmDash", - "lint/.docstrings/quitter.hpp.adoc:#3:Google.Spacing", "lint/.docstrings/quitter.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#40:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#41:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#42:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#43:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#44:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#45:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#46:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#47:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#48:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#49:Vale.Spelling", "lint/.docstrings/quitter.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#50:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#51:Vale.Spelling", - "lint/.docstrings/quitter.hpp.adoc:#52:Vale.Spelling", "lint/.docstrings/quitter.hpp.adoc:#5:Vale.Spelling", "lint/.docstrings/quitter.hpp.adoc:#6:Vale.Spelling", "lint/.docstrings/quitter.hpp.adoc:#7:Vale.Spelling", "lint/.docstrings/quitter.hpp.adoc:#8:Vale.Spelling", "lint/.docstrings/quitter.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/read.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/read.hpp.adoc:#1:Google.EmDash", - "lint/.docstrings/read.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/read.hpp.adoc:#2:Google.Colons", - "lint/.docstrings/read.hpp.adoc:#2:Google.EmDash", - "lint/.docstrings/read.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/read.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/read_at_least.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/read_at_least.hpp.adoc:#1:Google.EmDash", - "lint/.docstrings/read_at_least.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/read_at_least.hpp.adoc:#2:Google.Colons", - "lint/.docstrings/read_at_least.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/read_at_least.hpp.adoc:#3:Google.Colons", - "lint/.docstrings/read_at_least.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#11:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#12:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#13:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#14:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#15:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#16:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#17:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#18:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#19:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#1:Google.Colons", + "lint/.docstrings/task.hpp.adoc:#1:Google.OxfordComma", "lint/.docstrings/task.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#20:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#21:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#22:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#23:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#24:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#25:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#26:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#27:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#28:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#29:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#2:Google.Colons", "lint/.docstrings/task.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#30:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#31:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#32:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#33:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#34:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#35:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#36:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#37:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#38:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#39:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#3:Google.Colons", "lint/.docstrings/task.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#40:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#41:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#42:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#43:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#44:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#45:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#46:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#47:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#48:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#49:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#4:Google.Colons", "lint/.docstrings/task.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#50:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#51:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#52:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#53:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#54:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#55:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#56:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#57:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#58:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#59:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#5:Google.Colons", "lint/.docstrings/task.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#60:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#61:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#62:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#63:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#64:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#65:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#6:Google.Colons", - "lint/.docstrings/task.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#7:Google.Colons", - "lint/.docstrings/task.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#8:Google.Colons", - "lint/.docstrings/task.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/task.hpp.adoc:#9:Google.Colons", - "lint/.docstrings/task.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/test.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/test/buffer_to_string.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/test/buffer_to_string.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/test/bufgrind.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/test/bufgrind.hpp.adoc:#1:Google.Colons", "lint/.docstrings/test/bufgrind.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/test/bufgrind.hpp.adoc:#2:Google.Colons", "lint/.docstrings/test/bufgrind.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/test/bufgrind.hpp.adoc:#3:Google.Colons", - "lint/.docstrings/test/bufgrind.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/test/bufgrind.hpp.adoc:#4:Google.Colons", - "lint/.docstrings/test/bufgrind.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/test/bufgrind.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/test/bufgrind.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/test/bufgrind.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/test/bufgrind.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/test/bufgrind.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#10:Google.Colons", "lint/.docstrings/test/fuse.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#11:Google.Colons", "lint/.docstrings/test/fuse.hpp.adoc:#11:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#12:Google.Colons", - "lint/.docstrings/test/fuse.hpp.adoc:#12:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#13:Google.Colons", - "lint/.docstrings/test/fuse.hpp.adoc:#13:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#14:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#15:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#16:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#17:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#18:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#19:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#1:Capy.SimpleTense", - "lint/.docstrings/test/fuse.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/test/fuse.hpp.adoc:#1:Google.EmDash", - "lint/.docstrings/test/fuse.hpp.adoc:#1:Google.Will", - "lint/.docstrings/test/fuse.hpp.adoc:#1:Google.WordList", "lint/.docstrings/test/fuse.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#20:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#21:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#22:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#23:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#24:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#25:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#26:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#27:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#28:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#29:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#2:Capy.SimpleTense", - "lint/.docstrings/test/fuse.hpp.adoc:#2:Google.Colons", - "lint/.docstrings/test/fuse.hpp.adoc:#2:Google.Will", "lint/.docstrings/test/fuse.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#30:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#31:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#32:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#33:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#34:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#35:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#36:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#37:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#38:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#39:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#3:Capy.SimpleTense", - "lint/.docstrings/test/fuse.hpp.adoc:#3:Google.Colons", - "lint/.docstrings/test/fuse.hpp.adoc:#3:Google.Will", "lint/.docstrings/test/fuse.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#4:Capy.SimpleTense", - "lint/.docstrings/test/fuse.hpp.adoc:#4:Google.Colons", - "lint/.docstrings/test/fuse.hpp.adoc:#4:Google.Will", "lint/.docstrings/test/fuse.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#5:Google.Colons", "lint/.docstrings/test/fuse.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#6:Google.Colons", "lint/.docstrings/test/fuse.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#7:Google.Colons", "lint/.docstrings/test/fuse.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#8:Google.Colons", "lint/.docstrings/test/fuse.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/test/fuse.hpp.adoc:#9:Google.Colons", "lint/.docstrings/test/fuse.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/test/read_stream.hpp.adoc:#1:Capy.SimpleTense", - "lint/.docstrings/test/read_stream.hpp.adoc:#1:Google.Colons", "lint/.docstrings/test/read_stream.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/test/read_stream.hpp.adoc:#2:Google.Colons", "lint/.docstrings/test/read_stream.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/test/read_stream.hpp.adoc:#3:Google.Colons", - "lint/.docstrings/test/read_stream.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/test/read_stream.hpp.adoc:#4:Google.Colons", - "lint/.docstrings/test/read_stream.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/test/read_stream.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#10:Google.Colons", "lint/.docstrings/test/run_blocking.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#11:Google.Colons", "lint/.docstrings/test/run_blocking.hpp.adoc:#11:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#12:Google.Colons", "lint/.docstrings/test/run_blocking.hpp.adoc:#12:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#13:Google.Colons", "lint/.docstrings/test/run_blocking.hpp.adoc:#13:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#14:Google.Colons", "lint/.docstrings/test/run_blocking.hpp.adoc:#14:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#15:Google.Colons", "lint/.docstrings/test/run_blocking.hpp.adoc:#15:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#16:Google.Colons", "lint/.docstrings/test/run_blocking.hpp.adoc:#16:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#17:Google.Colons", "lint/.docstrings/test/run_blocking.hpp.adoc:#17:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#18:Google.Colons", "lint/.docstrings/test/run_blocking.hpp.adoc:#18:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#19:Google.Colons", "lint/.docstrings/test/run_blocking.hpp.adoc:#19:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/test/run_blocking.hpp.adoc:#1:Google.WordList", "lint/.docstrings/test/run_blocking.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#20:Google.Colons", "lint/.docstrings/test/run_blocking.hpp.adoc:#20:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#21:Google.Colons", "lint/.docstrings/test/run_blocking.hpp.adoc:#21:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#22:Google.Colons", "lint/.docstrings/test/run_blocking.hpp.adoc:#22:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#23:Google.Colons", "lint/.docstrings/test/run_blocking.hpp.adoc:#23:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#24:Google.Colons", - "lint/.docstrings/test/run_blocking.hpp.adoc:#24:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#25:Google.Colons", - "lint/.docstrings/test/run_blocking.hpp.adoc:#25:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#26:Google.Colons", - "lint/.docstrings/test/run_blocking.hpp.adoc:#26:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#27:Google.Colons", - "lint/.docstrings/test/run_blocking.hpp.adoc:#27:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#28:Google.Colons", - "lint/.docstrings/test/run_blocking.hpp.adoc:#28:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#29:Google.Colons", - "lint/.docstrings/test/run_blocking.hpp.adoc:#29:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#2:Google.Colons", - "lint/.docstrings/test/run_blocking.hpp.adoc:#2:Google.WordList", "lint/.docstrings/test/run_blocking.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#30:Google.Colons", - "lint/.docstrings/test/run_blocking.hpp.adoc:#30:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#31:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#32:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#33:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#34:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#35:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#36:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#37:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#38:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#39:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#3:Google.Colons", - "lint/.docstrings/test/run_blocking.hpp.adoc:#3:Google.WordList", "lint/.docstrings/test/run_blocking.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#40:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#41:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#42:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#43:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#44:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#45:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#46:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#47:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#48:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#4:Google.Colons", - "lint/.docstrings/test/run_blocking.hpp.adoc:#4:Google.WordList", "lint/.docstrings/test/run_blocking.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#5:Google.Colons", "lint/.docstrings/test/run_blocking.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#6:Google.Colons", "lint/.docstrings/test/run_blocking.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#7:Google.Colons", "lint/.docstrings/test/run_blocking.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#8:Google.Colons", "lint/.docstrings/test/run_blocking.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/test/run_blocking.hpp.adoc:#9:Google.Colons", "lint/.docstrings/test/run_blocking.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/test/stream.hpp.adoc:#10:Google.Colons", "lint/.docstrings/test/stream.hpp.adoc:#10:Vale.Spelling", "lint/.docstrings/test/stream.hpp.adoc:#11:Vale.Spelling", "lint/.docstrings/test/stream.hpp.adoc:#12:Vale.Spelling", "lint/.docstrings/test/stream.hpp.adoc:#13:Vale.Spelling", "lint/.docstrings/test/stream.hpp.adoc:#14:Vale.Spelling", - "lint/.docstrings/test/stream.hpp.adoc:#15:Vale.Spelling", - "lint/.docstrings/test/stream.hpp.adoc:#16:Vale.Spelling", - "lint/.docstrings/test/stream.hpp.adoc:#17:Vale.Spelling", - "lint/.docstrings/test/stream.hpp.adoc:#18:Vale.Spelling", - "lint/.docstrings/test/stream.hpp.adoc:#19:Vale.Spelling", - "lint/.docstrings/test/stream.hpp.adoc:#1:Capy.SimpleTense", - "lint/.docstrings/test/stream.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/test/stream.hpp.adoc:#1:Google.Latin", - "lint/.docstrings/test/stream.hpp.adoc:#1:Google.WordList", - "lint/.docstrings/test/stream.hpp.adoc:#1:Vale.Repetition", "lint/.docstrings/test/stream.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/test/stream.hpp.adoc:#20:Vale.Spelling", - "lint/.docstrings/test/stream.hpp.adoc:#21:Vale.Spelling", - "lint/.docstrings/test/stream.hpp.adoc:#22:Vale.Spelling", - "lint/.docstrings/test/stream.hpp.adoc:#2:Google.Colons", - "lint/.docstrings/test/stream.hpp.adoc:#2:Google.WordList", "lint/.docstrings/test/stream.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/test/stream.hpp.adoc:#3:Google.Colons", "lint/.docstrings/test/stream.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/test/stream.hpp.adoc:#4:Google.Colons", "lint/.docstrings/test/stream.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/test/stream.hpp.adoc:#5:Google.Colons", "lint/.docstrings/test/stream.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/test/stream.hpp.adoc:#6:Google.Colons", "lint/.docstrings/test/stream.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/test/stream.hpp.adoc:#7:Google.Colons", "lint/.docstrings/test/stream.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/test/stream.hpp.adoc:#8:Google.Colons", "lint/.docstrings/test/stream.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/test/stream.hpp.adoc:#9:Google.Colons", "lint/.docstrings/test/stream.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/test/thread_name.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/test/write_stream.hpp.adoc:#1:Capy.SimpleTense", - "lint/.docstrings/test/write_stream.hpp.adoc:#1:Google.Colons", "lint/.docstrings/test/write_stream.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/test/write_stream.hpp.adoc:#2:Google.Colons", - "lint/.docstrings/test/write_stream.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/test/write_stream.hpp.adoc:#3:Google.Colons", - "lint/.docstrings/test/write_stream.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/test/write_stream.hpp.adoc:#4:Google.Colons", - "lint/.docstrings/test/write_stream.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/test/write_stream.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/test/write_stream.hpp.adoc:#6:Vale.Spelling", "lint/.docstrings/when_all.hpp.adoc:#10:Vale.Spelling", "lint/.docstrings/when_all.hpp.adoc:#11:Vale.Spelling", "lint/.docstrings/when_all.hpp.adoc:#12:Vale.Spelling", @@ -3804,218 +358,132 @@ "lint/.docstrings/when_all.hpp.adoc:#14:Vale.Spelling", "lint/.docstrings/when_all.hpp.adoc:#15:Vale.Spelling", "lint/.docstrings/when_all.hpp.adoc:#16:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#17:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#18:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#19:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/when_all.hpp.adoc:#1:Google.LyHyphens", "lint/.docstrings/when_all.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#20:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#21:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#22:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#23:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#24:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#25:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#26:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#27:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#28:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#29:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#2:Google.Colons", "lint/.docstrings/when_all.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#30:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#31:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#32:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#33:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#34:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#35:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#36:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#37:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#38:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#39:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#3:Google.Colons", "lint/.docstrings/when_all.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#40:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#41:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#42:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#43:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#44:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#45:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#46:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#47:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#48:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#49:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#4:Google.Colons", "lint/.docstrings/when_all.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#50:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#51:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#52:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#53:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#54:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#55:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#56:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#57:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#58:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#59:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#5:Google.Colons", "lint/.docstrings/when_all.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#60:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#61:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#62:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#63:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#64:Vale.Spelling", - "lint/.docstrings/when_all.hpp.adoc:#6:Google.Colons", "lint/.docstrings/when_all.hpp.adoc:#6:Vale.Spelling", "lint/.docstrings/when_all.hpp.adoc:#7:Vale.Spelling", "lint/.docstrings/when_all.hpp.adoc:#8:Vale.Spelling", "lint/.docstrings/when_all.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#10:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#11:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#12:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#13:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#14:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#15:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#16:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#17:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#18:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#19:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/when_any.hpp.adoc:#1:Google.EmDash", - "lint/.docstrings/when_any.hpp.adoc:#1:Google.Latin", "lint/.docstrings/when_any.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#20:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#21:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#22:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#23:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#24:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#25:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#26:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#27:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#28:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#29:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#2:Google.Colons", "lint/.docstrings/when_any.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#30:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#31:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#32:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#33:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#34:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#35:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#36:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#37:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#38:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#39:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#3:Google.Colons", "lint/.docstrings/when_any.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#4:Google.Colons", "lint/.docstrings/when_any.hpp.adoc:#4:Vale.Spelling", "lint/.docstrings/when_any.hpp.adoc:#5:Vale.Spelling", "lint/.docstrings/when_any.hpp.adoc:#6:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#7:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#8:Vale.Spelling", - "lint/.docstrings/when_any.hpp.adoc:#9:Vale.Spelling", - "lint/.docstrings/write.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/write.hpp.adoc:#1:Google.EmDash", "lint/.docstrings/write.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/write.hpp.adoc:#2:Google.Colons", - "lint/.docstrings/write.hpp.adoc:#2:Google.EmDash", "lint/.docstrings/write.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/write.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/write.hpp.adoc:#4:Vale.Spelling", - "lint/.docstrings/write.hpp.adoc:#5:Vale.Spelling", - "lint/.docstrings/write_at_least.hpp.adoc:#1:Google.Colons", - "lint/.docstrings/write_at_least.hpp.adoc:#1:Google.EmDash", - "lint/.docstrings/write_at_least.hpp.adoc:#1:Vale.Spelling", - "lint/.docstrings/write_at_least.hpp.adoc:#2:Google.Colons", - "lint/.docstrings/write_at_least.hpp.adoc:#2:Vale.Spelling", - "lint/.docstrings/write_at_least.hpp.adoc:#3:Google.Colons", - "lint/.docstrings/write_at_least.hpp.adoc:#3:Vale.Spelling", - "lint/.docstrings/write_at_least.hpp.adoc:#4:Vale.Spelling" + "lint/.docstrings/write_at_least.hpp.adoc:#1:Vale.Spelling" + ] + }, + "sentence_length": { + "count": 65, + "skipped": false, + "byRule": { + "hard": 7, + "advisory": 58, + "unbalancedBackticks": 0, + "max": 25, + "scanned": { + "modules": 61, + "lint/.docstrings": 62 + }, + "advisoryDirs": [ + "modules/ROOT/pages/9.design/", + "modules/ROOT/pages/A.specification-methods/" + ] + }, + "fingerprints": [ + "C2:lint/.docstrings/concept/io_awaitable.hpp.adoc:#1:sentence over 25 words", + "C2:lint/.docstrings/concept/io_awaitable.hpp.adoc:#2:sentence over 25 words", + "C2:lint/.docstrings/concept/io_awaitable.hpp.adoc:#3:sentence over 25 words", + "C2:lint/.docstrings/concept/io_awaitable.hpp.adoc:#4:sentence over 25 words", + "C2:modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#1:sentence over 25 words", + "C2:modules/ROOT/pages/2.cpp20-coroutines/2b.syntax.adoc:#2:sentence over 25 words", + "C2:modules/ROOT/pages/4.coroutines/4d.io-awaitable.adoc:#1:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#1:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#2:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#3:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#4:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#5:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#6:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#7:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#8:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9a.CapyLayering.adoc:#9:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9b.Separation.adoc:#1:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9b.Separation.adoc:#2:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9b.Separation.adoc:#3:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9b.Separation.adoc:#4:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9b.Separation.adoc:#5:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9b.Separation.adoc:#6:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9c.ReadStream.adoc:#1:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9c.ReadStream.adoc:#2:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9c.ReadStream.adoc:#3:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9c.ReadStream.adoc:#4:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9c.ReadStream.adoc:#5:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9c.ReadStream.adoc:#6:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9c.ReadStream.adoc:#7:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9c.ReadStream.adoc:#8:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9f.WriteStream.adoc:#1:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9f.WriteStream.adoc:#2:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9f.WriteStream.adoc:#3:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9f.WriteStream.adoc:#4:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#1:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#2:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#3:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9i.TypeEraseAwaitable.adoc:#4:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9k.Executor.adoc:#10:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9k.Executor.adoc:#1:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9k.Executor.adoc:#2:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9k.Executor.adoc:#3:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9k.Executor.adoc:#4:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9k.Executor.adoc:#5:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9k.Executor.adoc:#6:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9k.Executor.adoc:#7:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9k.Executor.adoc:#8:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9k.Executor.adoc:#9:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9l.RunApi.adoc:#1:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9l.RunApi.adoc:#2:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9l.RunApi.adoc:#3:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9l.RunApi.adoc:#4:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#1:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#2:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9m.WhyNotCobalt.adoc:#3:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#1:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#2:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#3:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#4:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/9.design/9n.WhyNotCobaltConcepts.adoc:#5:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/A.specification-methods/Ab.cancellation.adoc:#1:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/A.specification-methods/Ab.cancellation.adoc:#2:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/A.specification-methods/Ac.contingencies.adoc:#1:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/A.specification-methods/Ac.contingencies.adoc:#2:sentence over 25 words", + "advisory-C2:modules/ROOT/pages/A.specification-methods/Ac.contingencies.adoc:#3:sentence over 25 words" ] }, "doc_lint": { - "count": 70, + "count": 5, "skipped": false, "byRule": { - "A1": 64, + "A1": 0, "A6": 0, "B2": 0, - "D2": 6 + "SHAPE": 0, + "ANCHOR": 0, + "D2": 5 }, "fingerprints": [ - "A1:2.cpp20-coroutines/2.intro.adoc:#1:no :page-mode: attribute", - "A1:2.cpp20-coroutines/2a.foundations.adoc:#1:no :page-mode: attribute", - "A1:2.cpp20-coroutines/2b.syntax.adoc:#1:no :page-mode: attribute", - "A1:2.cpp20-coroutines/2c.machinery.adoc:#1:no :page-mode: attribute", - "A1:2.cpp20-coroutines/2d.advanced.adoc:#1:no :page-mode: attribute", - "A1:3.concurrency/3.intro.adoc:#1:no :page-mode: attribute", - "A1:3.concurrency/3a.foundations.adoc:#1:no :page-mode: attribute", - "A1:3.concurrency/3b.synchronization.adoc:#1:no :page-mode: attribute", - "A1:3.concurrency/3c.advanced.adoc:#1:no :page-mode: attribute", - "A1:3.concurrency/3d.patterns.adoc:#1:no :page-mode: attribute", - "A1:4.coroutines/4.intro.adoc:#1:no :page-mode: attribute", - "A1:4.coroutines/4a.tasks.adoc:#1:no :page-mode: attribute", - "A1:4.coroutines/4b.launching.adoc:#1:no :page-mode: attribute", - "A1:4.coroutines/4c.executors.adoc:#1:no :page-mode: attribute", - "A1:4.coroutines/4d.io-awaitable.adoc:#1:no :page-mode: attribute", - "A1:4.coroutines/4e.cancellation.adoc:#1:no :page-mode: attribute", - "A1:4.coroutines/4f.composition.adoc:#1:no :page-mode: attribute", - "A1:4.coroutines/4g.allocators.adoc:#1:no :page-mode: attribute", - "A1:4.coroutines/4h.lambda-captures.adoc:#1:no :page-mode: attribute", - "A1:5.buffers/5.intro.adoc:#1:no :page-mode: attribute", - "A1:5.buffers/5a.overview.adoc:#1:no :page-mode: attribute", - "A1:5.buffers/5b.types.adoc:#1:no :page-mode: attribute", - "A1:5.buffers/5c.sequences.adoc:#1:no :page-mode: attribute", - "A1:5.buffers/5d.system-io.adoc:#1:no :page-mode: attribute", - "A1:5.buffers/5e.algorithms.adoc:#1:no :page-mode: attribute", - "A1:6.streams/6.intro.adoc:#1:no :page-mode: attribute", - "A1:6.streams/6a.overview.adoc:#1:no :page-mode: attribute", - "A1:6.streams/6b.streams.adoc:#1:no :page-mode: attribute", - "A1:6.streams/6f.isolation.adoc:#1:no :page-mode: attribute", - "A1:7.testing/7.intro.adoc:#1:no :page-mode: attribute", - "A1:7.testing/7a.drivers.adoc:#1:no :page-mode: attribute", - "A1:7.testing/7b.mock-streams.adoc:#1:no :page-mode: attribute", - "A1:7.testing/7e.buffer-inspection.adoc:#1:no :page-mode: attribute", - "A1:8.examples/8.intro.adoc:#1:no :page-mode: attribute", - "A1:8.examples/8a.hello-task.adoc:#1:no :page-mode: attribute", - "A1:8.examples/8b.producer-consumer.adoc:#1:no :page-mode: attribute", - "A1:8.examples/8c.buffer-composition.adoc:#1:no :page-mode: attribute", - "A1:8.examples/8d.mock-stream-testing.adoc:#1:no :page-mode: attribute", - "A1:8.examples/8e.type-erased-echo.adoc:#1:no :page-mode: attribute", - "A1:8.examples/8f.timeout-cancellation.adoc:#1:no :page-mode: attribute", - "A1:8.examples/8g.parallel-fetch.adoc:#1:no :page-mode: attribute", - "A1:8.examples/8k.strand-serialization.adoc:#1:no :page-mode: attribute", - "A1:8.examples/8l.async-mutex.adoc:#1:no :page-mode: attribute", - "A1:8.examples/8m.parallel-tasks.adoc:#1:no :page-mode: attribute", - "A1:8.examples/8n.custom-executor.adoc:#1:no :page-mode: attribute", - "A1:8.examples/8o.sender-bridge.adoc:#1:no :page-mode: attribute", - "A1:8.examples/8p.asio-use-capy.adoc:#1:no :page-mode: attribute", - "A1:9.design/9.intro.adoc:#1:no :page-mode: attribute", - "A1:9.design/9a.CapyLayering.adoc:#1:no :page-mode: attribute", - "A1:9.design/9b.Separation.adoc:#1:no :page-mode: attribute", - "A1:9.design/9c.ReadStream.adoc:#1:no :page-mode: attribute", - "A1:9.design/9f.WriteStream.adoc:#1:no :page-mode: attribute", - "A1:9.design/9i.TypeEraseAwaitable.adoc:#1:no :page-mode: attribute", - "A1:9.design/9k.Executor.adoc:#1:no :page-mode: attribute", - "A1:9.design/9l.RunApi.adoc:#1:no :page-mode: attribute", - "A1:9.design/9m.WhyNotCobalt.adoc:#1:no :page-mode: attribute", - "A1:9.design/9n.WhyNotCobaltConcepts.adoc:#1:no :page-mode: attribute", - "A1:9.design/9o.WhyNotTMC.adoc:#1:no :page-mode: attribute", - "A1:A.specification-methods/A.intro.adoc:#1:no :page-mode: attribute", - "A1:A.specification-methods/Ab.cancellation.adoc:#1:no :page-mode: attribute", - "A1:A.specification-methods/Ac.contingencies.adoc:#1:no :page-mode: attribute", - "A1:index.adoc:#1:no :page-mode: attribute", - "A1:quick-start.adoc:#1:no :page-mode: attribute", - "A1:why-capy.adoc:#1:no :page-mode: attribute", "D2:2.cpp20-coroutines/2.intro.adoc:#1:tutorial/concept page has no include::example$", "D2:3.concurrency/3.intro.adoc:#1:tutorial/concept page has no include::example$", "D2:4.coroutines/4.intro.adoc:#1:tutorial/concept page has no include::example$", - "D2:5.buffers/5.intro.adoc:#1:tutorial/concept page has no include::example$", "D2:6.streams/6.intro.adoc:#1:tutorial/concept page has no include::example$", "D2:7.testing/7.intro.adoc:#1:tutorial/concept page has no include::example$" ] }, "mrdocs_warnings": { - "count": 214, + "count": 21, "skipped": false, "fingerprints": [ "?:#1:unsupported HTML tag ", @@ -4027,233 +495,45 @@ "?:#7:unsupported HTML tag ", "?:#8:unsupported HTML tag ", "include/boost/capy/buffers.hpp:#1:begin: variable is undocumented", - "include/boost/capy/buffers.hpp:#1:boost::capy::buffer_length: Missing documentation for parameter 'bs'", - "include/boost/capy/buffers.hpp:#1:boost::capy::buffer_length: Missing documentation for return value", - "include/boost/capy/buffers.hpp:#1:boost::capy::const_buffer::const_buffer: 1st parameter is unnamed", - "include/boost/capy/buffers.hpp:#1:boost::capy::const_buffer::const_buffer: Missing documentation for parameter 'b'", - "include/boost/capy/buffers.hpp:#1:boost::capy::const_buffer::const_buffer: Missing documentation for parameter 'data'", - "include/boost/capy/buffers.hpp:#1:boost::capy::const_buffer::const_buffer: Missing documentation for parameter 'size'", - "include/boost/capy/buffers.hpp:#1:boost::capy::const_buffer::data: Missing documentation for return value", - "include/boost/capy/buffers.hpp:#1:boost::capy::const_buffer::operator+=: Missing documentation for return value", - "include/boost/capy/buffers.hpp:#1:boost::capy::const_buffer::operator=: Missing documentation for parameter 'other'", - "include/boost/capy/buffers.hpp:#1:boost::capy::const_buffer::operator=: Missing documentation for return value", - "include/boost/capy/buffers.hpp:#1:boost::capy::const_buffer::size: Missing documentation for return value", - "include/boost/capy/buffers.hpp:#1:boost::capy::mutable_buffer::data: Missing documentation for return value", - "include/boost/capy/buffers.hpp:#1:boost::capy::mutable_buffer::mutable_buffer: 1st parameter is unnamed", - "include/boost/capy/buffers.hpp:#1:boost::capy::mutable_buffer::mutable_buffer: Missing documentation for parameter 'data'", - "include/boost/capy/buffers.hpp:#1:boost::capy::mutable_buffer::mutable_buffer: Missing documentation for parameter 'size'", - "include/boost/capy/buffers.hpp:#1:boost::capy::mutable_buffer::operator+=: Missing documentation for return value", - "include/boost/capy/buffers.hpp:#1:boost::capy::mutable_buffer::operator=: 1st parameter is unnamed", - "include/boost/capy/buffers.hpp:#1:boost::capy::mutable_buffer::operator=: Missing documentation for return value", - "include/boost/capy/buffers.hpp:#1:boost::capy::mutable_buffer::size: Missing documentation for return value", "include/boost/capy/buffers.hpp:#1:buffer_empty: variable is undocumented", "include/boost/capy/buffers.hpp:#1:buffer_size: variable is undocumented", "include/boost/capy/buffers.hpp:#1:end: variable is undocumented", "include/boost/capy/buffers/buffer_copy.hpp:#1:buffer_copy: variable is undocumented", - "include/boost/capy/buffers/buffer_param.hpp:#1:arr_: variable is undocumented", - "include/boost/capy/buffers/buffer_param.hpp:#1:buffer_param: guide is undocumented", - "include/boost/capy/buffers/buffer_param.hpp:#1:dummy_: variable is undocumented", - "include/boost/capy/buffers/consuming_buffers.hpp:#1:boost::capy::consuming_buffers::consuming_buffers: 1st parameter is unnamed", - "include/boost/capy/buffers/consuming_buffers.hpp:#1:boost::capy::consuming_buffers::data: Missing documentation for return value", - "include/boost/capy/buffers/consuming_buffers.hpp:#1:consuming_buffers: guide is undocumented", "include/boost/capy/buffers/front.hpp:#1:front: variable is undocumented", - "include/boost/capy/buffers/make_buffer.hpp:#1:boost::capy::make_buffer: Missing documentation for parameter 'data'", - "include/boost/capy/buffers/make_buffer.hpp:#1:boost::capy::make_buffer: Missing documentation for return value", - "include/boost/capy/buffers/make_buffer.hpp:#2:boost::capy::make_buffer: Missing documentation for parameter 'data'", - "include/boost/capy/buffers/make_buffer.hpp:#2:boost::capy::make_buffer: Missing documentation for return value", - "include/boost/capy/concept/buffer_archetype.hpp:#1:boost::capy::const_buffer_archetype_::operator const_buffer: Missing documentation for return value", - "include/boost/capy/concept/buffer_archetype.hpp:#1:boost::capy::mutable_buffer_archetype_::operator const_buffer: Missing documentation for return value", - "include/boost/capy/concept/buffer_archetype.hpp:#1:boost::capy::mutable_buffer_archetype_::operator mutable_buffer: Missing documentation for return value", - "include/boost/capy/concept/buffer_archetype.hpp:#1:const_buffer_archetype: typedef is undocumented", - "include/boost/capy/concept/buffer_archetype.hpp:#1:const_buffer_archetype_: function is undocumented", - "include/boost/capy/concept/buffer_archetype.hpp:#1:mutable_buffer_archetype: typedef is undocumented", - "include/boost/capy/concept/buffer_archetype.hpp:#1:mutable_buffer_archetype_: function is undocumented", - "include/boost/capy/concept/buffer_archetype.hpp:#1:operator=: function is undocumented", - "include/boost/capy/concept/buffer_archetype.hpp:#2:const_buffer_archetype_: function is undocumented", - "include/boost/capy/concept/buffer_archetype.hpp:#2:mutable_buffer_archetype_: function is undocumented", - "include/boost/capy/concept/buffer_archetype.hpp:#2:operator=: function is undocumented", - "include/boost/capy/concept/buffer_archetype.hpp:#3:const_buffer_archetype_: function is undocumented", - "include/boost/capy/concept/buffer_archetype.hpp:#3:mutable_buffer_archetype_: function is undocumented", - "include/boost/capy/concept/buffer_archetype.hpp:#3:operator=: function is undocumented", - "include/boost/capy/concept/buffer_archetype.hpp:#4:operator=: function is undocumented", - "include/boost/capy/cond.hpp:#1:boost::capy::make_error_condition: Missing documentation for parameter 'ev'", - "include/boost/capy/cond.hpp:#1:boost::capy::make_error_condition: Missing documentation for return value", - "include/boost/capy/continuation.hpp:#1:h: variable is undocumented", - "include/boost/capy/continuation.hpp:#1:reserved: variable is undocumented", "include/boost/capy/detail/intrusive.hpp:#1:boost::capy::detail::intrusive_list: Failed to resolve reference to 'node'", - "include/boost/capy/error.hpp:#1:boost::capy::make_error_code: Missing documentation for parameter 'ev'", - "include/boost/capy/error.hpp:#1:boost::capy::make_error_code: Missing documentation for return value", - "include/boost/capy/ex/any_executor.hpp:#1:boost::capy::any_executor::any_executor: 1st parameter is unnamed", - "include/boost/capy/ex/any_executor.hpp:#1:boost::capy::any_executor::operator=: 1st parameter is unnamed", - "include/boost/capy/ex/any_executor.hpp:#1:boost::capy::any_executor::operator=: Missing documentation for return value", - "include/boost/capy/ex/async_event.hpp:#1:await_ready: function is undocumented", - "include/boost/capy/ex/async_event.hpp:#1:await_resume: function is undocumented", - "include/boost/capy/ex/async_event.hpp:#1:boost::capy::async_event::async_event: 1st parameter is unnamed", - "include/boost/capy/ex/async_event.hpp:#1:boost::capy::async_event::is_set: Missing documentation for return value", - "include/boost/capy/ex/async_event.hpp:#1:boost::capy::async_event::operator=: 1st parameter is unnamed", - "include/boost/capy/ex/async_event.hpp:#1:boost::capy::async_event::wait_awaiter::await_suspend: Missing documentation for parameter 'env'", - "include/boost/capy/ex/async_event.hpp:#1:boost::capy::async_event::wait_awaiter::await_suspend: Missing documentation for parameter 'h'", - "include/boost/capy/ex/async_event.hpp:#1:boost::capy::async_event::wait_awaiter::await_suspend: Missing documentation for return value", - "include/boost/capy/ex/async_event.hpp:#1:operator=: function is undocumented", - "include/boost/capy/ex/async_event.hpp:#1:wait_awaiter: function is undocumented", - "include/boost/capy/ex/async_event.hpp:#1:~wait_awaiter: function is undocumented", - "include/boost/capy/ex/async_event.hpp:#2:boost::capy::async_event::async_event: 1st parameter is unnamed", - "include/boost/capy/ex/async_event.hpp:#2:boost::capy::async_event::operator=: 1st parameter is unnamed", - "include/boost/capy/ex/async_event.hpp:#2:operator=: function is undocumented", - "include/boost/capy/ex/async_event.hpp:#2:wait_awaiter: function is undocumented", - "include/boost/capy/ex/async_event.hpp:#3:wait_awaiter: function is undocumented", - "include/boost/capy/ex/async_mutex.hpp:#1:await_ready: function is undocumented", - "include/boost/capy/ex/async_mutex.hpp:#1:await_resume: function is undocumented", - "include/boost/capy/ex/async_mutex.hpp:#1:boost::capy::async_mutex::async_mutex: 1st parameter is unnamed", - "include/boost/capy/ex/async_mutex.hpp:#1:boost::capy::async_mutex::is_locked: Missing documentation for return value", - "include/boost/capy/ex/async_mutex.hpp:#1:boost::capy::async_mutex::lock_awaiter::await_suspend: Missing documentation for parameter 'env'", - "include/boost/capy/ex/async_mutex.hpp:#1:boost::capy::async_mutex::lock_awaiter::await_suspend: Missing documentation for parameter 'h'", - "include/boost/capy/ex/async_mutex.hpp:#1:boost::capy::async_mutex::lock_awaiter::await_suspend: Missing documentation for return value", - "include/boost/capy/ex/async_mutex.hpp:#1:boost::capy::async_mutex::lock_guard_awaiter::await_suspend: Missing documentation for parameter 'env'", - "include/boost/capy/ex/async_mutex.hpp:#1:boost::capy::async_mutex::lock_guard_awaiter::await_suspend: Missing documentation for parameter 'h'", - "include/boost/capy/ex/async_mutex.hpp:#1:boost::capy::async_mutex::lock_guard_awaiter::await_suspend: Missing documentation for return value", - "include/boost/capy/ex/async_mutex.hpp:#1:boost::capy::async_mutex::operator=: 1st parameter is unnamed", - "include/boost/capy/ex/async_mutex.hpp:#1:lock_awaiter: function is undocumented", - "include/boost/capy/ex/async_mutex.hpp:#1:lock_guard: function is undocumented", - "include/boost/capy/ex/async_mutex.hpp:#1:lock_guard_awaiter: function is undocumented", - "include/boost/capy/ex/async_mutex.hpp:#1:operator=: function is undocumented", - "include/boost/capy/ex/async_mutex.hpp:#1:~lock_awaiter: function is undocumented", - "include/boost/capy/ex/async_mutex.hpp:#1:~lock_guard: function is undocumented", - "include/boost/capy/ex/async_mutex.hpp:#2:await_ready: function is undocumented", - "include/boost/capy/ex/async_mutex.hpp:#2:await_resume: function is undocumented", - "include/boost/capy/ex/async_mutex.hpp:#2:boost::capy::async_mutex::async_mutex: 1st parameter is unnamed", - "include/boost/capy/ex/async_mutex.hpp:#2:boost::capy::async_mutex::operator=: 1st parameter is unnamed", - "include/boost/capy/ex/async_mutex.hpp:#2:lock_awaiter: function is undocumented", - "include/boost/capy/ex/async_mutex.hpp:#2:lock_guard: function is undocumented", - "include/boost/capy/ex/async_mutex.hpp:#2:operator=: function is undocumented", - "include/boost/capy/ex/async_mutex.hpp:#3:lock_awaiter: function is undocumented", - "include/boost/capy/ex/async_mutex.hpp:#3:lock_guard: function is undocumented", - "include/boost/capy/ex/async_mutex.hpp:#3:operator=: function is undocumented", - "include/boost/capy/ex/async_mutex.hpp:#4:lock_guard: function is undocumented", - "include/boost/capy/ex/async_mutex.hpp:#4:operator=: function is undocumented", - "include/boost/capy/ex/async_waker.hpp:#1:await_resume: function is undocumented", - "include/boost/capy/ex/async_waker.hpp:#1:boost::capy::async_waker::async_waker: 1st parameter is unnamed", - "include/boost/capy/ex/async_waker.hpp:#1:boost::capy::async_waker::operator=: 1st parameter is unnamed", - "include/boost/capy/ex/async_waker.hpp:#1:boost::capy::async_waker::wait_awaiter::await_ready: Missing documentation for return value", - "include/boost/capy/ex/async_waker.hpp:#1:boost::capy::async_waker::wait_awaiter::await_suspend: Missing documentation for parameter 'env'", - "include/boost/capy/ex/async_waker.hpp:#1:boost::capy::async_waker::wait_awaiter::await_suspend: Missing documentation for parameter 'h'", - "include/boost/capy/ex/async_waker.hpp:#1:boost::capy::async_waker::wait_awaiter::await_suspend: Missing documentation for return value", - "include/boost/capy/ex/async_waker.hpp:#1:operator=: function is undocumented", - "include/boost/capy/ex/async_waker.hpp:#1:wait_awaiter: function is undocumented", - "include/boost/capy/ex/async_waker.hpp:#1:~wait_awaiter: function is undocumented", - "include/boost/capy/ex/async_waker.hpp:#2:boost::capy::async_waker::async_waker: 1st parameter is unnamed", - "include/boost/capy/ex/async_waker.hpp:#2:boost::capy::async_waker::operator=: 1st parameter is unnamed", - "include/boost/capy/ex/async_waker.hpp:#2:operator=: function is undocumented", - "include/boost/capy/ex/async_waker.hpp:#2:wait_awaiter: function is undocumented", - "include/boost/capy/ex/async_waker.hpp:#3:wait_awaiter: function is undocumented", - "include/boost/capy/ex/execution_context.hpp:#1:boost::capy::execution_context::execution_context: 1st parameter is unnamed", - "include/boost/capy/ex/execution_context.hpp:#1:execution_context: function is undocumented", - "include/boost/capy/ex/execution_context.hpp:#1:operator=: function is undocumented", - "include/boost/capy/ex/execution_context.hpp:#1:service: function is undocumented", - "include/boost/capy/ex/execution_context.hpp:#1:~service: function is undocumented", - "include/boost/capy/ex/executor_ref.hpp:#1:boost::capy::executor_ref::executor_ref: 1st parameter is unnamed", - "include/boost/capy/ex/executor_ref.hpp:#1:boost::capy::executor_ref::operator=: 1st parameter is unnamed", - "include/boost/capy/ex/executor_ref.hpp:#1:boost::capy::executor_ref::operator=: Missing documentation for return value", "include/boost/capy/ex/executor_ref.hpp:#1:executor_ref: function is undocumented", - "include/boost/capy/ex/frame_alloc_mixin.hpp:#1:boost::capy::frame_alloc_mixin::operator delete: Missing documentation for parameter 'ptr'", - "include/boost/capy/ex/frame_alloc_mixin.hpp:#1:boost::capy::frame_alloc_mixin::operator delete: Missing documentation for parameter 'size'", - "include/boost/capy/ex/frame_alloc_mixin.hpp:#1:boost::capy::frame_alloc_mixin::operator new: Failed to resolve reference to 'Propagates'", - "include/boost/capy/ex/immediate.hpp:#1:boost::capy::immediate::await_ready: Missing documentation for return value", - "include/boost/capy/ex/immediate.hpp:#1:boost::capy::immediate::await_resume: Missing documentation for return value", - "include/boost/capy/ex/io_awaitable_promise_base.hpp:#1:~io_awaitable_promise_base: function is undocumented", "include/boost/capy/ex/recycling_memory_resource.hpp:#1:boost::capy::recycling_memory_resource::allocate_fast: 2nd parameter is unnamed", - "include/boost/capy/ex/recycling_memory_resource.hpp:#1:boost::capy::recycling_memory_resource::allocate_fast: Missing documentation for parameter 'bytes'", - "include/boost/capy/ex/recycling_memory_resource.hpp:#1:boost::capy::recycling_memory_resource::allocate_fast: Missing documentation for return value", "include/boost/capy/ex/recycling_memory_resource.hpp:#1:boost::capy::recycling_memory_resource::deallocate_fast: 3rd parameter is unnamed", - "include/boost/capy/ex/recycling_memory_resource.hpp:#1:boost::capy::recycling_memory_resource::deallocate_fast: Missing documentation for parameter 'bytes'", - "include/boost/capy/ex/recycling_memory_resource.hpp:#1:boost::capy::recycling_memory_resource::deallocate_fast: Missing documentation for parameter 'p'", - "include/boost/capy/ex/recycling_memory_resource.hpp:#1:do_allocate: function is undocumented", - "include/boost/capy/ex/recycling_memory_resource.hpp:#1:do_deallocate: function is undocumented", - "include/boost/capy/ex/recycling_memory_resource.hpp:#1:do_is_equal: function is undocumented", - "include/boost/capy/ex/recycling_memory_resource.hpp:#1:~recycling_memory_resource: function is undocumented", "include/boost/capy/ex/run.hpp:#1:boost::capy::run: Documented parameter 'alloc' does not exist", - "include/boost/capy/ex/run_async.hpp:#1:operator=: function is undocumented", - "include/boost/capy/ex/run_async.hpp:#1:run_async_wrapper: function is undocumented", - "include/boost/capy/ex/run_async.hpp:#2:operator=: function is undocumented", - "include/boost/capy/ex/run_async.hpp:#2:run_async_wrapper: function is undocumented", - "include/boost/capy/ex/strand.hpp:#1:boost::capy::strand::operator=: 1st parameter is unnamed", - "include/boost/capy/ex/strand.hpp:#1:boost::capy::strand::operator=: Missing documentation for return value", - "include/boost/capy/ex/strand.hpp:#1:boost::capy::strand::strand: 1st parameter is unnamed", - "include/boost/capy/ex/strand.hpp:#1:strand: guide is undocumented", - "include/boost/capy/ex/strand.hpp:#2:boost::capy::strand::operator=: 1st parameter is unnamed", - "include/boost/capy/ex/strand.hpp:#2:boost::capy::strand::operator=: Missing documentation for return value", - "include/boost/capy/ex/strand.hpp:#2:boost::capy::strand::strand: 1st parameter is unnamed", - "include/boost/capy/ex/thread_pool.hpp:#1:boost::capy::thread_pool::executor_type::context: Missing documentation for return value", - "include/boost/capy/ex/thread_pool.hpp:#1:boost::capy::thread_pool::executor_type::operator==: Missing documentation for parameter 'other'", - "include/boost/capy/ex/thread_pool.hpp:#1:boost::capy::thread_pool::executor_type::operator==: Missing documentation for return value", - "include/boost/capy/ex/thread_pool.hpp:#1:operator=: function is undocumented", - "include/boost/capy/ex/thread_pool.hpp:#1:thread_pool: function is undocumented", - "include/boost/capy/ex/work_guard.hpp:#1:operator=: function is undocumented", - "include/boost/capy/io/any_read_stream.hpp:#1:boost::capy::any_read_stream::any_read_stream: 1st parameter is unnamed", - "include/boost/capy/io/any_read_stream.hpp:#1:operator=: function is undocumented", - "include/boost/capy/io/any_stream.hpp:#1:boost::capy::any_stream::any_stream: 1st parameter is unnamed", - "include/boost/capy/io/any_stream.hpp:#1:operator=: function is undocumented", - "include/boost/capy/io/any_write_stream.hpp:#1:boost::capy::any_write_stream::any_write_stream: 1st parameter is unnamed", - "include/boost/capy/io/any_write_stream.hpp:#1:operator=: function is undocumented", - "include/boost/capy/io_result.hpp:#1:boost::capy::io_result::io_result: Missing documentation for parameter 'ec_'", - "include/boost/capy/io_result.hpp:#1:boost::capy::io_result::io_result: Missing documentation for parameter 'ts'", - "include/boost/capy/io_result.hpp:#1:get: function is undocumented", - "include/boost/capy/io_result.hpp:#2:get: function is undocumented", - "include/boost/capy/io_result.hpp:#3:get: function is undocumented", - "include/boost/capy/io_result.hpp:#4:get: function is undocumented", - "include/boost/capy/quitter.hpp:#1:a_: variable is undocumented", - "include/boost/capy/quitter.hpp:#1:await_ready: function is undocumented", - "include/boost/capy/quitter.hpp:#1:await_resume: function is undocumented", - "include/boost/capy/quitter.hpp:#1:await_suspend: function is undocumented", - "include/boost/capy/quitter.hpp:#1:boost::capy::quitter::await_ready: Missing documentation for return value", - "include/boost/capy/quitter.hpp:#1:boost::capy::quitter::await_resume: Missing documentation for return value", - "include/boost/capy/quitter.hpp:#1:boost::capy::quitter::await_suspend: Missing documentation for parameter 'cont'", - "include/boost/capy/quitter.hpp:#1:boost::capy::quitter::await_suspend: Missing documentation for parameter 'env'", - "include/boost/capy/quitter.hpp:#1:boost::capy::quitter::await_suspend: Missing documentation for return value", - "include/boost/capy/quitter.hpp:#1:boost::capy::quitter::operator=: Missing documentation for parameter 'other'", - "include/boost/capy/quitter.hpp:#1:boost::capy::quitter::operator=: Missing documentation for return value", - "include/boost/capy/quitter.hpp:#1:boost::capy::quitter::promise_type::exception: Missing documentation for return value", - "include/boost/capy/quitter.hpp:#1:boost::capy::quitter::promise_type::stopped: Missing documentation for return value", - "include/boost/capy/quitter.hpp:#1:boost::capy::quitter::quitter: Missing documentation for parameter 'other'", - "include/boost/capy/quitter.hpp:#1:ep_: variable is undocumented", - "include/boost/capy/quitter.hpp:#1:operator=: function is undocumented", - "include/boost/capy/quitter.hpp:#1:p_: variable is undocumented", - "include/boost/capy/quitter.hpp:#1:quitter: function is undocumented", - "include/boost/capy/read.hpp:#1:boost::capy::read: Missing documentation for return value", - "include/boost/capy/read_at_least.hpp:#1:boost::capy::read_at_least: Missing documentation for return value", - "include/boost/capy/task.hpp:#1:a_: variable is undocumented", - "include/boost/capy/task.hpp:#1:await_ready: function is undocumented", "include/boost/capy/task.hpp:#1:await_resume: function is undocumented", - "include/boost/capy/task.hpp:#1:await_suspend: function is undocumented", - "include/boost/capy/task.hpp:#1:boost::capy::task::await_resume: Failed to resolve reference to 'The'", - "include/boost/capy/task.hpp:#1:ep_: variable is undocumented", - "include/boost/capy/task.hpp:#1:operator=: function is undocumented", - "include/boost/capy/task.hpp:#1:p_: variable is undocumented", - "include/boost/capy/task.hpp:#1:task: function is undocumented", - "include/boost/capy/write.hpp:#1:boost::capy::write: Missing documentation for return value", - "include/boost/capy/write_at_least.hpp:#1:boost::capy::write_at_least: Missing documentation for return value" + "include/boost/capy/task.hpp:#1:boost::capy::task::await_resume: Failed to resolve reference to 'The'" ] }, "a11y": { - "count": 71, + "count": 80, "skipped": false, - "contrastCount": 9, + "contrastCount": 6, "fingerprints": [ - "/capy/4.coroutines/4a.tasks.html:color-contrast:#content > article > div:nth-child(6) > div > div:nth-child(2) > div > pre > code > span:nth-child(1)", - "/capy/4.coroutines/4a.tasks.html:color-contrast:#content > article > div:nth-child(6) > div > div:nth-child(2) > div > pre > code > span:nth-child(8)", + "/capy/4.coroutines/4a.tasks.html:color-contrast:#content > article > div:nth-child(1) > nav > ul > li:nth-child(2) > a", + "/capy/4.coroutines/4a.tasks.html:color-contrast:#content > article > div:nth-child(1) > nav > ul > li:nth-child(3) > a", "/capy/4.coroutines/4a.tasks.html:link-name:#_awaiting_other_tasks > a", "/capy/4.coroutines/4a.tasks.html:link-name:#_declaring_task_coroutines > a", "/capy/4.coroutines/4a.tasks.html:link-name:#_exception_propagation > a", "/capy/4.coroutines/4a.tasks.html:link-name:#_lazy_execution > a", "/capy/4.coroutines/4a.tasks.html:link-name:#_move_semantics > a", "/capy/4.coroutines/4a.tasks.html:link-name:#_overview > a", - "/capy/4.coroutines/4a.tasks.html:link-name:#_prerequisites > a", - "/capy/4.coroutines/4a.tasks.html:link-name:#_reference > a", "/capy/4.coroutines/4a.tasks.html:link-name:#_returning_values_with_co_return > a", "/capy/4.coroutines/4a.tasks.html:link-name:#_running_a_task > a", "/capy/4.coroutines/4a.tasks.html:link-name:#_symmetric_transfer > a", + "/capy/4.coroutines/4a.tasks.html:link-name:#io-result-and-io-task > a", "/capy/4.coroutines/4a.tasks.html:list:#toc > aside > div > div > nav > ul", "/capy/4.coroutines/4a.tasks.html:list:#toc > aside > div > div > nav > ul > ul", + "/capy/4.coroutines/4a.tasks.html:scrollable-region-focusable:#content > article > div:nth-child(10) > div > div:nth-child(2) > div > pre", + "/capy/4.coroutines/4a.tasks.html:scrollable-region-focusable:#content > article > div:nth-child(11) > div > div:nth-child(5) > div > pre", + "/capy/4.coroutines/4a.tasks.html:scrollable-region-focusable:#content > article > div:nth-child(12) > div > div:nth-child(2) > div > pre", + "/capy/4.coroutines/4a.tasks.html:scrollable-region-focusable:#content > article > div:nth-child(7) > div > div:nth-child(3) > div > pre", + "/capy/4.coroutines/4a.tasks.html:scrollable-region-focusable:#content > article > div:nth-child(8) > div > div:nth-child(2) > div > pre", + "/capy/index.html:color-contrast:#content > article > div:nth-child(1) > nav > ul > li:nth-child(2) > a", "/capy/index.html:link-name:#_assumed_knowledge > a", "/capy/index.html:link-name:#_code_convention > a", "/capy/index.html:link-name:#_compiler_support > a", @@ -4271,13 +551,7 @@ "/capy/index.html:link-name:#_what_this_library_does_not_do > a", "/capy/index.html:list:#toc > aside > div > div > nav > ul", "/capy/index.html:list:#toc > aside > div > div > nav > ul > ul", - "/capy/quick-start.html:color-contrast:#content > article > div:nth-child(4) > div > div:nth-child(2) > div > pre > code > span:nth-child(1)", - "/capy/quick-start.html:color-contrast:#content > article > div:nth-child(4) > div > div:nth-child(2) > div > pre > code > span:nth-child(16)", - "/capy/quick-start.html:color-contrast:#content > article > div:nth-child(4) > div > div:nth-child(2) > div > pre > code > span:nth-child(2)", - "/capy/quick-start.html:color-contrast:#content > article > div:nth-child(4) > div > div:nth-child(2) > div > pre > code > span:nth-child(3)", - "/capy/quick-start.html:color-contrast:#content > article > div:nth-child(4) > div > div:nth-child(2) > div > pre > code > span:nth-child(4)", - "/capy/quick-start.html:color-contrast:#content > article > div:nth-child(4) > div > div:nth-child(2) > div > pre > code > span:nth-child(6)", - "/capy/quick-start.html:color-contrast:#content > article > div:nth-child(4) > div > div:nth-child(2) > div > pre > code > span:nth-child(9)", + "/capy/quick-start.html:color-contrast:#content > article > div:nth-child(1) > nav > ul > li:nth-child(2) > a", "/capy/quick-start.html:link-name:#_build_and_run > a", "/capy/quick-start.html:link-name:#_handling_errors > a", "/capy/quick-start.html:link-name:#_handling_results > a", @@ -4286,8 +560,9 @@ "/capy/quick-start.html:link-name:#_what_just_happened > a", "/capy/quick-start.html:list:#toc > aside > div > div > nav > ul", "/capy/quick-start.html:list:#toc > aside > div > div > nav > ul > ul", + "/capy/reference/boost/capy.html:color-contrast:#content > article > div:nth-child(1) > nav > ul > li:nth-child(2) > a", + "/capy/reference/boost/capy.html:link-in-text-block:#content > article > h1 > a", "/capy/reference/boost/capy.html:link-name:#_concepts > a", - "/capy/reference/boost/capy.html:link-name:#_deduction_guides > a", "/capy/reference/boost/capy.html:link-name:#_enums > a", "/capy/reference/boost/capy.html:link-name:#_functions > a", "/capy/reference/boost/capy.html:link-name:#_namespaces > a", @@ -4295,21 +570,30 @@ "/capy/reference/boost/capy.html:link-name:#_types > a", "/capy/reference/boost/capy.html:list:#toc > aside > div > div > nav > ul", "/capy/reference/boost/capy.html:list:#toc > aside > div > div > nav > ul > ul", + "/capy/why-capy.html:color-contrast:#content > article > div:nth-child(1) > nav > ul > li:nth-child(2) > a", "/capy/why-capy.html:link-name:#_buffer_sequences > a", "/capy/why-capy.html:link-name:#_comparison > a", "/capy/why-capy.html:link-name:#_comparison_2 > a", "/capy/why-capy.html:link-name:#_comparison_3 > a", "/capy/why-capy.html:link-name:#_comparison_4 > a", + "/capy/why-capy.html:link-name:#_comparison_5 > a", "/capy/why-capy.html:link-name:#_coroutine_execution_model > a", "/capy/why-capy.html:link-name:#_coroutine_only_stream_concepts > a", + "/capy/why-capy.html:link-name:#_deterministic_testing > a", "/capy/why-capy.html:link-name:#_the_road_ahead > a", "/capy/why-capy.html:link-name:#_type_erasing_stream_wrappers > a", + "/capy/why-capy.html:link-name:#_what_capy_is_not > a", "/capy/why-capy.html:link-name:#_what_capy_offers > a", "/capy/why-capy.html:link-name:#_what_capy_offers_2 > a", "/capy/why-capy.html:link-name:#_what_capy_offers_3 > a", "/capy/why-capy.html:link-name:#_what_capy_offers_4 > a", + "/capy/why-capy.html:link-name:#_what_capy_offers_5 > a", + "/capy/why-capy.html:link-name:#_what_you_give_up > a", + "/capy/why-capy.html:link-name:#_where_capy_advances_beyond_asio > a", + "/capy/why-capy.html:link-name:#_you_do_not_have_to_choose > a", "/capy/why-capy.html:list:#toc > aside > div > div > nav > ul", - "/capy/why-capy.html:list:#toc > aside > div > div > nav > ul > ul" + "/capy/why-capy.html:list:#toc > aside > div > div > nav > ul > ul", + "/capy/why-capy.html:scrollable-region-focusable:#preamble > div > div:nth-child(3) > div > pre" ] } } diff --git a/doc/lint/baseline.mjs b/doc/lint/baseline.mjs index 134e86872..698dd01ac 100644 --- a/doc/lint/baseline.mjs +++ b/doc/lint/baseline.mjs @@ -24,6 +24,13 @@ const DOC_DIR = path.resolve(SCRIPT_DIR, '..'); const REPO_ROOT = path.resolve(DOC_DIR, '..'); const cliArgs = process.argv.slice(2); const skipA11y = cliArgs.includes('--skip-a11y'); +// --details additionally emits a `details` map per check, keyed by the SAME +// fingerprint string, carrying { file, line, excerpt } for human-readable +// reporting. Deliberately opt-in and deliberately NOT part of a committed +// baseline: line numbers move, so persisting them would reintroduce exactly +// the churn occurrenceKey() exists to avoid (see its comment). The reseed +// path never passes this; check-no-new-violations.mjs always does. +const wantDetails = cliArgs.includes('--details'); const outArg = cliArgs.find((a) => !a.startsWith('--')); function run(cmd, args, opts = {}) { @@ -69,6 +76,75 @@ function valeRelPath(file) { return path.relative(DOC_DIR, path.resolve(DOC_DIR, file)).split(path.sep).join('/'); } + +// --------------------------------------------------------------------------- +// Source resolution for human-readable reporting (--details only). +// +// A docstring finding is reported against lint/.docstrings/.adoc, a +// GENERATED file nobody edits — unactionable on its own. extract-docstrings.mjs +// writes a `.lines.json` sidecar mapping output-line ranges back to the +// line in the real header where that doc comment starts; we then refine within +// the block by locating the excerpt in the header text, because a single doc +// comment can be 100 output lines long. +const lineMapCache = new Map(); +const srcCache = new Map(); + +const normText = (s) => s.replace(/^[\s*\/]+/, '').replace(/\s+/g, ' ').trim(); + +// Find `excerpt` in the header at/after `fromLine`, tolerating the reflow that +// cleanBlock() applied (`*` prefixes stripped, continuation lines folded). Returns +// a 1-based line, or null when the probe is too short or does not match — in which +// case the caller keeps the block's start line, which is always correct if coarse. +function locateInSource(relSource, fromLine, excerpt) { + if (!excerpt) return null; + let lines = srcCache.get(relSource); + if (lines === undefined) { + try { lines = fs.readFileSync(path.join(REPO_ROOT, relSource), 'utf8').split('\n'); } + catch { lines = null; } + srcCache.set(relSource, lines); + } + if (!lines) return null; + let buf = ''; + const owner = []; + for (let i = fromLine - 1; i < Math.min(lines.length, fromLine + 400); i++) { + const t = normText(lines[i]); + if (!t) continue; + if (buf) { buf += ' '; owner.push(i + 1); } + for (let k = 0; k < t.length; k++) owner.push(i + 1); + buf += t; + } + const probe = normText(excerpt).slice(0, 60); + if (probe.length < 12) return null; + const at = buf.indexOf(probe); + return at >= 0 ? owner[at] : null; +} + +// Map a linted path + line to the file a developer should actually open. +function resolveSource(relFile, line, excerpt) { + if (!relFile || !relFile.startsWith('lint/.docstrings/')) { + return { file: relFile ? `doc/${relFile}` : null, line: line ?? null }; + } + const mapPath = path.join(DOC_DIR, `${relFile}.lines.json`); + let map = lineMapCache.get(mapPath); + if (map === undefined) { + try { map = JSON.parse(fs.readFileSync(mapPath, 'utf8')); } catch { map = null; } + lineMapCache.set(mapPath, map); + } + if (!map) return { file: `doc/${relFile}`, line: line ?? null }; + const span = line == null ? null : map.spans.find((sp) => line >= sp.from && line <= sp.to); + if (!span) return { file: map.source, line: null }; + return { file: map.source, line: locateInSource(map.source, span.srcLine, excerpt) ?? span.srcLine }; +} + +// Head+tail excerpt: a 30-word sentence is unreadable inline, but its opening +// and closing words are what let you find it in the file. +function excerptOf(text, max = 96) { + if (!text) return null; + const t = normText(String(text)); + if (t.length <= max) return t; + return `${t.slice(0, max - 28).trimEnd()} ... ${t.slice(-22).trimStart()}`; +} + function valeFingerprints(target) { const r = run('vale', ['--output=JSON', target], { cwd: DOC_DIR }); if (r.error) { @@ -88,11 +164,20 @@ function valeFingerprints(target) { return { count: 0, skipped: true, reason: `vale on '${target}' did not produce findings (exit ${r.status}): ${tail}`, fingerprints: [] }; } const fingerprints = []; + const details = {}; const seen = new Map(); for (const [file, alerts] of Object.entries(parsed)) { - for (const a of alerts) fingerprints.push(occurrenceKey(seen, valeRelPath(file), a.Check)); + const rel = valeRelPath(file); + for (const a of alerts) { + const fp = occurrenceKey(seen, rel, a.Check); + fingerprints.push(fp); + if (wantDetails) { + details[fp] = { ...resolveSource(rel, a.Line, a.Match), rule: a.Check, + message: a.Message, excerpt: excerptOf(a.Match) }; + } + } } - return { count: fingerprints.length, fingerprints: fingerprints.sort() }; + return { count: fingerprints.length, fingerprints: fingerprints.sort(), details }; } // A crashed check must report as SKIPPED, never as zero findings. doc-lint.mjs and @@ -126,6 +211,7 @@ function docLintFingerprints() { }; } const fingerprints = []; + const details = {}; const seen = new Map(); for (const [check, items] of Object.entries(parsed.findings || {})) { // SHAPE is advisory-only and never gated (see doc-lint.mjs's header @@ -136,9 +222,17 @@ function docLintFingerprints() { // zero, silently disarming the "gated check reports 0 against a // non-empty baseline" backstop (check-no-new-violations.mjs:187). if (check === 'SHAPE') continue; - for (const it of items) fingerprints.push(occurrenceKey(seen, `${check}:${it.file}`, it.message)); + for (const it of items) { + const fp = occurrenceKey(seen, `${check}:${it.file}`, it.message); + fingerprints.push(fp); + // doc-lint reports paths relative to the pages tree, not to doc/. + if (wantDetails) { + details[fp] = { ...resolveSource(`modules/ROOT/pages/${it.file}`, it.line ?? null, null), + rule: check, message: it.message, excerpt: null }; + } + } } - return { count: fingerprints.length, byRule: parsed.summary, fingerprints: fingerprints.sort() }; + return { count: fingerprints.length, byRule: parsed.summary, fingerprints: fingerprints.sort(), details }; } // C2 (sentence length) is checked by our own script, not by Vale — see the @@ -163,11 +257,20 @@ function sentenceLengthFingerprints() { }; } const fingerprints = []; + const details = {}; const seen = new Map(); for (const [check, items] of Object.entries(parsed.findings || {})) { - for (const it of items) fingerprints.push(occurrenceKey(seen, `${check}:${it.file}`, it.message)); + for (const it of items) { + const fp = occurrenceKey(seen, `${check}:${it.file}`, it.message); + fingerprints.push(fp); + if (wantDetails) { + details[fp] = { ...resolveSource(it.file, it.line ?? null, it.sentence), + rule: check, message: it.words ? `${it.message} (${it.words})` : it.message, + excerpt: excerptOf(it.sentence) }; + } + } } - return { count: fingerprints.length, byRule: parsed.summary, fingerprints: fingerprints.sort() }; + return { count: fingerprints.length, byRule: parsed.summary, fingerprints: fingerprints.sort(), details }; } function mrdocsFingerprints() { @@ -178,8 +281,16 @@ function mrdocsFingerprints() { try { parsed = JSON.parse(r.stdout || '{}'); } catch { /* fall through */ } if (parsed.error) return { count: 0, skipped: true, reason: parsed.error, fingerprints: [] }; const seen = new Map(); - const fingerprints = (parsed.findings || []).map((f) => occurrenceKey(seen, f.file ?? '?', f.message)); - return { count: fingerprints.length, fingerprints: fingerprints.sort() }; + const details = {}; + const fingerprints = (parsed.findings || []).map((f) => { + const fp = occurrenceKey(seen, f.file ?? '?', f.message); + if (wantDetails) { + details[fp] = { file: f.file ?? null, line: f.line ?? null, + rule: 'mrdocs', message: f.message, excerpt: null }; + } + return fp; + }); + return { count: fingerprints.length, fingerprints: fingerprints.sort(), details }; } function a11yFingerprints() { @@ -237,6 +348,7 @@ const baseline = { count: v.count, skipped: v.skipped || false, reason: v.reason, byRule: v.byRule, contrastCount: v.contrastCount, fingerprints: v.fingerprints, + ...(wantDetails && v.details ? { details: v.details } : {}), }])), }; diff --git a/doc/lint/check-no-new-violations.mjs b/doc/lint/check-no-new-violations.mjs index f84ab93a6..84acf939f 100644 --- a/doc/lint/check-no-new-violations.mjs +++ b/doc/lint/check-no-new-violations.mjs @@ -58,6 +58,17 @@ import { fileURLToPath } from 'node:url'; const SCRIPT_DIR = path.dirname(fileURLToPath(import.meta.url)); const argv = process.argv.slice(2); const strict = argv.includes('--strict'); +// --show-baseline additionally lists findings that are present RIGHT NOW and are +// grandfathered by baseline.json, as warnings. That is deliberately the live +// intersection (current ∩ baseline), not the baseline file's contents: the +// baseline is only ever reseeded when something is ADDED, so it accumulates dead +// clauses for findings that were long since fixed. Printing the file would list +// thousands of already-fixed items; printing the intersection is the real +// remaining worklist. +const showBaseline = argv.includes('--show-baseline'); +// --json restores the machine-readable dump for tooling. Nothing in-tree parses +// it today; the CI steps read the human output. +const jsonOut = argv.includes('--json'); // Parse --gate specs; everything else (except --strict) is passed through to // baseline.mjs. NB: --gate values must NOT reach baseline.mjs, whose first @@ -67,7 +78,7 @@ const allowEmptied = new Set(); // checks whose zero is an accepted milestone const extraArgs = []; for (let i = 0; i < argv.length; i++) { const a = argv[i]; - if (a === '--strict') continue; + if (a === '--strict' || a === '--show-baseline' || a === '--json') continue; let allow = null; if (a === '--allow-emptied') allow = argv[++i]; else if (a.startsWith('--allow-emptied=')) allow = a.slice('--allow-emptied='.length); @@ -106,7 +117,7 @@ if (!fs.existsSync(baselinePath)) { const baseline = JSON.parse(fs.readFileSync(baselinePath, 'utf8')); const tmpPath = path.join(os.tmpdir(), `doc-lint-current-${process.pid}.json`); -const r = spawnSync('node', [path.join(SCRIPT_DIR, 'baseline.mjs'), ...extraArgs, tmpPath], { encoding: 'utf8' }); +const r = spawnSync('node', [path.join(SCRIPT_DIR, 'baseline.mjs'), '--details', ...extraArgs, tmpPath], { encoding: 'utf8' }); if (r.status !== 0 || !fs.existsSync(tmpPath)) { console.log(JSON.stringify({ error: 'failed to generate a current snapshot', stderr: r.stderr }, null, 2)); process.exit(0); @@ -143,8 +154,11 @@ for (const [check, currentCheck] of Object.entries(current.checks)) { const baseSet = new Set(baseline.checks[check]?.fingerprints || []); const currentSet = currentCheck.fingerprints || []; const newOnes = currentSet.filter((fp) => !baseSet.has(fp)); + const stillPresent = currentSet.filter((fp) => baseSet.has(fp)); totalNew += newOnes.length; const entry = { baselineCount: baseline.checks[check]?.count ?? 0, currentCount: currentCheck.count, newCount: newOnes.length, newFindings: newOnes }; + entry.stillPresent = stillPresent; + entry.details = currentCheck.details || {}; if (gateRes) { const gatedOnes = newOnes.filter((fp) => gateRes.some((re) => re.test(fp))); entry.gated = true; @@ -202,23 +216,162 @@ if (anySkipped) { // The blocking condition: gated slice when --gate is present, omnibus otherwise. const blockingNew = gated ? gatedNew : totalNew; const blockingSkip = gated ? gatedSkipped : anySkipped; -if (gated && blockingNew > 0) { - console.error(`GATE: ${blockingNew} new gated violation(s):`); - for (const f of gatedFindings) console.error(` - ${f}`); + +// --------------------------------------------------------------------------- +// Human-readable report. +// +// This used to print the whole comparison as JSON. On a real failure that was +// ~250 lines of which 8 mattered, and the 8 carried no line number and no +// quote — so the reader still had to grep the corpus to find out what broke. +// The rule now: say what is wrong, where, and show enough of it to recognise. +const isCI = !!process.env.GITHUB_ACTIONS; +const fmtLoc = (d, fp) => (d && d.file ? `${d.file}${d.line ? `:${d.line}` : ''}` : fp); + +// One finding, three lines at most: location, rule + message, excerpt. +function emit(level, check, fp, d) { + const loc = fmtLoc(d, fp); + const rule = d?.rule ? d.rule : check; + const msg = d?.message || fp; + console.error(`${level} ${loc}`); + console.error(` [${check} ${rule}] ${msg}`); + if (d?.excerpt) console.error(` "${d.excerpt}"`); + // GitHub annotations put the finding on the diff line itself. Only for + // findings that actually block: a non-blocking step annotating every new + // finding buries the handful that matter under a hundred that do not. + // + // Emitted as ::warning, not ::error, deliberately. The annotation's job is + // to locate the finding on the diff; the check status is what says the run + // failed, and it already does (exit 1). A red inline marker on prose nits + // reads as broken code to anyone skimming the Files-changed tab. + if (isCI && level === 'ERROR' && d?.file) { + const esc = (t) => String(t).replace(/%/g, '%25').replace(/\r/g, '%0D').replace(/\n/g, '%0A'); + console.log(`::warning file=${d.file}${d.line ? `,line=${d.line}` : ''}::${esc(`[${check} ${rule}] ${msg}`)}`); + } +} + +// Errors: the findings that actually block. Under --gate that is the gated +// slice; without --gate every new finding is reported as an error, because +// then there is no narrower thing to mean. +// Two independent questions, and conflating them has bitten twice: +// +// * WHICH findings deserve attention — the gated slice, when --gate is given. +// Those get called out and annotated on the diff. +// * WHETHER the run fails — --strict, and nothing else. +// +// Keying attention on `gated` alone made the un-gated report step announce all +// ~124 new findings as blocking and annotate every one. Keying it on `strict` +// instead then meant that dropping --strict silently removed the annotations +// too. The gate spec says what matters; --strict only says whether mattering is +// fatal. +const errorList = []; +const newNonBlocking = []; +for (const [check, e] of Object.entries(report)) { + if (e.skipped) continue; + const gatedSet = new Set(e.gatedNewFindings || []); + for (const fp of e.newFindings || []) { + (gated && gatedSet.has(fp) ? errorList : newNonBlocking).push([check, fp, e.details?.[fp]]); + } } + +if (errorList.length) { + console.error(`\n${errorList.length} new gated violation(s) (${strict + ? 'these block the merge' + : 'reported, not blocking — fix them before this gate is promoted'}):\n`); + for (const [check, fp, d] of errorList) emit('ERROR', check, fp, d); +} + +if (newNonBlocking.length) { + console.error(`\n${newNonBlocking.length} other new finding(s) since the baseline ` + + `(${gated ? 'not in a gated slice' : 'report only'}):\n`); + for (const [check, fp, d] of newNonBlocking) emit('NEW ', check, fp, d); +} + for (const check of emptiedGated) { - console.error(`GATE: gated check '${check}' reports 0 findings but the committed baseline has ` + + console.error(`\nERROR gated check '${check}' reports 0 findings but the committed baseline has ` + `${baseline.checks[check]?.fingerprints?.length ?? 0} — a check that did not run looks exactly ` + `like this. Verify it really ran; if the backlog is genuinely closed, re-run with ` + `--allow-emptied ${check}.`); } -console.log(JSON.stringify({ - totalNew, anySkipped, strict, - gated, gatedNew: gated ? gatedNew : undefined, gatedSkipped: gated ? gatedSkipped : undefined, - gatedEmptied: gated ? gatedEmptied : undefined, - emptiedGated: gated ? emptiedGated : undefined, - gatedFindings: gated ? gatedFindings : undefined, - checks: report, -}, null, 2)); -process.exit(strict && (blockingNew > 0 || blockingSkip || (gated && gatedEmptied)) ? 1 : 0); +if (showBaseline) { + const live = []; + for (const [check, e] of Object.entries(report)) { + if (e.skipped) continue; + for (const fp of e.stillPresent || []) live.push([check, fp, e.details?.[fp]]); + } + console.error(`\n${live.length} grandfathered finding(s) still present — the remaining backlog:\n`); + for (const [check, fp, d] of live) emit('WARN ', check, fp, d); +} + +if (!errorList.length && !newNonBlocking.length && !emptiedGated.length && !anySkipped) { + console.error(`No new ${gated ? 'gated ' : ''}findings.` + + (showBaseline ? '' : ' Re-run with --show-baseline to list the remaining backlog.')); +} + +// --------------------------------------------------------------------------- +// GitHub job summary. Annotations land on the diff, but a fork PR cannot be +// commented on (the pull_request token is read-only), so the run page is the +// one place a full report is reachable from the check without extra machinery. +// Same pattern ci.yml and the reseed step already use. +if (process.env.GITHUB_STEP_SUMMARY) { + const md = []; + // Pipes and newlines would break the table; excerpts are prose and can hold both. + const cell = (t) => String(t ?? '').replace(/\|/g, '\\|').replace(/\r?\n/g, ' '); + + // The blocking findings are deliberately NOT tabulated here. They are already + // annotated on the diff, which is where you act on them; repeating them on the + // run page just means reading the same eight things twice, in the place that is + // one click further away. + if (errorList.length) { + md.push(`### ${strict ? '❌' : '⚠️'} ${errorList.length} new gated violation(s)` + + ' — see the annotations on the diff', ''); + } else if (!emptiedGated.length && gated) { + md.push('### ✅ No new gated violations', ''); + } + + for (const check of emptiedGated) { + md.push(`### ❌ Gated check \`${check}\` reported zero findings`, '', + `The committed baseline has ${baseline.checks[check]?.fingerprints?.length ?? 0}. ` + + 'A check that did not run looks exactly like this — verify it ran before believing it.', ''); + } + + if (newNonBlocking.length) { + const why = gated ? 'not in a gated slice' : 'report only'; + md.push(`
${newNonBlocking.length} new finding(s) since the baseline — ${why}`, '', '```'); + for (const [check, fp, d] of newNonBlocking.slice(0, 200)) md.push(`${fmtLoc(d, fp)} [${d?.rule || check}] ${d?.message || ''}`); + if (newNonBlocking.length > 200) md.push(`… and ${newNonBlocking.length - 200} more`); + md.push('```', '
', ''); + } + + if (showBaseline) { + const live = []; + for (const [check, e] of Object.entries(report)) { + if (e.skipped) continue; + for (const fp of e.stillPresent || []) live.push([check, fp, e.details?.[fp]]); + } + md.push(`
${live.length} grandfathered finding(s) still present — the remaining backlog`, '', '```'); + for (const [check, fp, d] of live) md.push(`${fmtLoc(d, fp)} [${d?.rule || check}] ${d?.message || ''}`); + md.push('```', '
', ''); + } + + for (const [check, e] of Object.entries(report)) { + if (e.skipped) md.push(`> ⚠️ \`${check}\` was **skipped** (${cell(e.reason)}) — not compared.`, ''); + } + + fs.appendFileSync(process.env.GITHUB_STEP_SUMMARY, md.join('\n') + '\n'); +} + +if (jsonOut) { + console.log(JSON.stringify({ + totalNew, anySkipped, strict, + gated, gatedNew: gated ? gatedNew : undefined, gatedSkipped: gated ? gatedSkipped : undefined, + gatedEmptied: gated ? gatedEmptied : undefined, + emptiedGated: gated ? emptiedGated : undefined, + gatedFindings: gated ? gatedFindings : undefined, + checks: report, + }, null, 2)); +} +// process.exit() truncates buffered stdout when stdout is a pipe — it does not +// wait for the flush. That silently cut the --json payload mid-string. Setting +// exitCode lets Node drain normally and exit with the same status. +process.exitCode = strict && (blockingNew > 0 || blockingSkip || (gated && gatedEmptied)) ? 1 : 0; diff --git a/doc/lint/extract-docstrings.mjs b/doc/lint/extract-docstrings.mjs index 22766f636..538dde6db 100644 --- a/doc/lint/extract-docstrings.mjs +++ b/doc/lint/extract-docstrings.mjs @@ -50,14 +50,21 @@ import { fileURLToPath } from 'node:url'; const SCRIPT_DIR = path.dirname(fileURLToPath(import.meta.url)); const REPO_ROOT = path.resolve(SCRIPT_DIR, '../..'); -const INCLUDE_ROOT = path.join(REPO_ROOT, 'include/boost/capy'); +// argv[3] overrides the header tree so a self-test can point this at a fixture +// instead of the real corpus. The `///` assertion used to derive its sample from +// the live tree, which meant it silently depended on which headers happened to +// exist — excluding detail/ removed every `///`-only header and broke it. +const INCLUDE_ROOT = path.resolve(REPO_ROOT, process.argv[3] || 'include/boost/capy'); const OUT_DIR = path.resolve(REPO_ROOT, process.argv[2] || 'doc/lint/.docstrings'); function walk(dir) { let out = []; for (const ent of fs.readdirSync(dir, { withFileTypes: true })) { const p = path.join(dir, ent.name); - if (ent.isDirectory()) out = out.concat(walk(p)); + // `detail/` is implementation-defined per doc/mrdocs.yml, so none of its + // prose reaches a reader. Linting it inflated the docstring backlog with + // findings nobody can act on. The linted corpus tracks the published one. + if (ent.isDirectory()) { if (ent.name !== 'detail') out = out.concat(walk(p)); } else if (ent.name.endsWith('.hpp')) out.push(p); } return out; @@ -146,6 +153,24 @@ function cleanBlock(raw) { // mistaken for a doc comment of its own. There is no such line in the tree today // (`grep -rn '^[[:space:]]*\*.*///'` finds none), but the cost of being wrong is a // commented-out doc comment silently entering the linted corpus. +// Byte ranges of every `namespace detail { ... }` block, brace-matched. A public +// header can carry detail helpers (run_async.hpp, when_all.hpp, when_any.hpp, +// executor_ref.hpp, buffers/asio.hpp all do), and mrdocs.yml marks +// `boost::capy::detail` AND `boost::capy::*::detail` implementation-defined — so +// those doc comments are no more published than the ones under detail/. +// Excluding the directory alone would leave 33 of them in the corpus. +function detailNamespaceRanges(text) { + const ranges = []; + for (const m of text.matchAll(/\bnamespace\s+detail\s*\{/g)) { + let depth = 0; + for (let j = m.end !== undefined ? m.end : m.index + m[0].length - 1; j < text.length; j++) { + if (text[j] === '{') depth++; + else if (text[j] === '}') { depth--; if (depth === 0) { ranges.push([m.index, j]); break; } } + } + } + return ranges; +} + function blockCommentRanges(text) { const ranges = []; for (const m of text.matchAll(/\/\*[\s\S]*?\*\//g)) ranges.push([m.index, m.index + m[0].length]); @@ -161,6 +186,7 @@ function docComments(text) { const found = []; for (const m of text.matchAll(/\/\*\*([\s\S]*?)\*\//g)) found.push({ at: m.index, raw: m[1] }); + const inDetail = detailNamespaceRanges(text); const inBlock = blockCommentRanges(text); const covered = (off) => inBlock.some(([a, b]) => off >= a && off < b); const lineRe = /^[ \t]*\/\/\/(?!\/)(.*)$/; @@ -179,19 +205,55 @@ function docComments(text) { } flushRun(); - return found.sort((a, b) => a.at - b.at).map((d) => d.raw); + // Keep the byte offset so the caller can turn it into a source line. The + // extracted .adoc is a generated file nobody edits, so a finding reported + // against it is unactionable without a way back to the .hpp. See the + // sidecar written below. + const lineOf = (off) => text.slice(0, off).split('\n').length; // 1-based + return found + .filter((d) => !inDetail.some(([a, b]) => d.at >= a && d.at < b)) + .sort((a, b) => a.at - b.at) + .map((d) => ({ raw: d.raw, srcLine: lineOf(d.at) })); } +// Clear the output tree first. The generator never used to, so a header that +// stops producing output — renamed, deleted, or now excluded — left its last +// .adoc behind for Vale to keep linting. That is also the stale-corpus hazard +// baseline.mjs guards against from the other side. +fs.rmSync(OUT_DIR, { recursive: true, force: true }); + let written = 0; for (const file of walk(INCLUDE_ROOT)) { const text = fs.readFileSync(file, 'utf8'); - const blocks = docComments(text).map(cleanBlock).filter(Boolean); - if (blocks.length === 0) continue; + const found = docComments(text) + .map((d) => ({ text: cleanBlock(d.raw), srcLine: d.srcLine })) + .filter((d) => d.text); + if (found.length === 0) continue; const rel = path.relative(INCLUDE_ROOT, file); const outPath = path.join(OUT_DIR, `${rel}.adoc`); fs.mkdirSync(path.dirname(outPath), { recursive: true }); - fs.writeFileSync(outPath, blocks.join('\n\n') + '\n'); + fs.writeFileSync(outPath, found.map((d) => d.text).join('\n\n') + '\n'); + + // Sidecar line map: output line (1-based, into the .adoc just written) -> + // the line in the ORIGINAL header where that doc comment starts. Written + // beside the .adoc rather than into it, so the extracted prose stays + // byte-identical and no baseline fingerprint moves. + // + // Granularity is per doc comment, not per sentence: cleanBlock() reflows + // `@li` items and folds continuation lines, so an output line has no single + // source line. The comment's start line plus the excerpt the reporter + // quotes is enough to land on the right block in a 200-line header. + const spans = []; + let out = 1; + for (const d of found) { + const n = d.text.split('\n').length; + spans.push({ from: out, to: out + n - 1, srcLine: d.srcLine }); + out += n + 1; // the '\n\n' join contributes one blank line between blocks + } + fs.writeFileSync(`${outPath}.lines.json`, JSON.stringify({ + source: path.relative(REPO_ROOT, file), spans, + })); written++; } diff --git a/doc/lint/fixtures/include/detail/excluded.hpp b/doc/lint/fixtures/include/detail/excluded.hpp new file mode 100644 index 000000000..bcb439bd9 --- /dev/null +++ b/doc/lint/fixtures/include/detail/excluded.hpp @@ -0,0 +1,22 @@ +// +// Copyright (c) 2026 Michael Vandeberg +// +// Distributed under the Boost Software License, Version 1.0. (See accompanying +// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +// +// Official repository: https://github.com/cppalliance/capy +// +// Fixture for selftest.mjs. Lives under detail/, so extract-docstrings.mjs must +// skip the whole file — covering the directory half of the exclusion, which the +// `namespace detail` fixture does not reach. +#ifndef BOOST_CAPY_FIXTURE_DETAIL_EXCLUDED_HPP +#define BOOST_CAPY_FIXTURE_DETAIL_EXCLUDED_HPP + +namespace boost::capy::detail { + +/** This whole file is under detail/ and must not reach the linted corpus. */ +void excluded_by_directory(); + +} // namespace boost::capy::detail + +#endif diff --git a/doc/lint/fixtures/include/slash_only.hpp b/doc/lint/fixtures/include/slash_only.hpp new file mode 100644 index 000000000..a69d6f4e5 --- /dev/null +++ b/doc/lint/fixtures/include/slash_only.hpp @@ -0,0 +1,30 @@ +// +// Copyright (c) 2026 Michael Vandeberg +// +// Distributed under the Boost Software License, Version 1.0. (See accompanying +// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +// +// Official repository: https://github.com/cppalliance/capy +// +// Fixture for selftest.mjs. Its ONLY doc comments are `///` runs, so it produces +// no output at all unless extract-docstrings.mjs's `///` branch works. The real +// header tree no longer contains such a file (every `///`-only header lived under +// detail/, which is excluded), which is why this is a fixture and not a probe. +#ifndef BOOST_CAPY_FIXTURE_SLASH_ONLY_HPP +#define BOOST_CAPY_FIXTURE_SLASH_ONLY_HPP + +namespace boost::capy { + +/// Reports whether the fixture extracted. +/// A second line, folded into the same doc comment. +void slash_only_public(); + +namespace detail { + +/// This one is inside namespace detail and must NOT be extracted. +void slash_only_detail(); + +} // namespace detail +} // namespace boost::capy + +#endif diff --git a/doc/lint/selftest.mjs b/doc/lint/selftest.mjs index 8acdef0dc..0010ebfad 100644 --- a/doc/lint/selftest.mjs +++ b/doc/lint/selftest.mjs @@ -134,29 +134,37 @@ check('only the hard key is reachable from a ^C2: gate spec', // retire the coverage silently: the corpus just gets smaller, every count drops, // and nothing reads as broken. The expectations below are DERIVED from the real // header tree rather than written down, so they cannot go stale. -const INCLUDE_ROOT = path.resolve(DOC_DIR, '..', 'include/boost/capy'); +const FIXTURE_INCLUDE = path.join(SCRIPT_DIR, 'fixtures/include'); const TMP_OUT = fs.mkdtempSync(path.join(os.tmpdir(), 'capy-selftest-docstrings-')); try { - const walkHpp = (dir) => fs.readdirSync(dir, { withFileTypes: true }).flatMap((e) => { - const p = path.join(dir, e.name); - return e.isDirectory() ? walkHpp(p) : (e.name.endsWith('.hpp') ? [p] : []); - }); - // Headers whose ONLY doc comments are `///` runs: they have no output file at all - // unless the `///` branch works, which makes them the sharpest available probe. - const slashOnly = walkHpp(INCLUDE_ROOT).filter((f) => { - const t = fs.readFileSync(f, 'utf8'); - return /^[ \t]*\/\/\/(?!\/)/m.test(t) && !t.includes('/**'); - }).map((f) => `${path.relative(INCLUDE_ROOT, f)}.adoc`); - - const x = spawnSync('node', [path.join(SCRIPT_DIR, 'extract-docstrings.mjs'), TMP_OUT], + // Run against a FIXTURE header tree, not the live one. The old form derived its + // sample from the real corpus — "headers with `///` and no `/** */`" — which + // silently depended on which headers happened to exist. Every such header lived + // under detail/, so excluding detail/ from extraction broke the assertion for a + // legitimate reason. A fixture cannot go stale that way. + const x = spawnSync('node', + [path.join(SCRIPT_DIR, 'extract-docstrings.mjs'), TMP_OUT, FIXTURE_INCLUDE], { encoding: 'utf8', cwd: DOC_DIR, maxBuffer: 16 * 1024 * 1024 }); - check('extract-docstrings.mjs exits 0', x.status === 0, `exited ${x.status}: ${(x.stderr || '').trim().slice(-200)}`); - check('extract-docstrings.mjs finds some `///`-only headers to prove the branch on', - slashOnly.length > 0, 'no header in the tree has `///` docs and no `/** */` block'); - const missing = slashOnly.filter((rel) => !fs.existsSync(path.join(TMP_OUT, rel))); - check('`///` doc comments are extracted', missing.length === 0, - `${missing.length} of ${slashOnly.length} ` - + `\`///\`-only header(s) produced no output: ${missing.slice(0, 3).join(', ')}`); + check('extract-docstrings.mjs exits 0', x.status === 0, + `exited ${x.status}: ${(x.stderr || '').trim().slice(-200)}`); + + const out = path.join(TMP_OUT, 'slash_only.hpp.adoc'); + const got = fs.existsSync(out) ? fs.readFileSync(out, 'utf8') : ''; + check('`///` doc comments are extracted', got.includes('Reports whether the fixture extracted'), + 'the `///`-only fixture header produced no output — the `///` branch is not firing'); + check('`///` continuation lines fold into one comment', + got.includes('folded into the same doc comment'), 'second `///` line was dropped'); + // detail/ is excluded by directory; this covers the OTHER half — `namespace detail` + // inside an otherwise-public header, which 5 real headers have. + check('doc comments inside `namespace detail` are NOT extracted', + !got.includes('must NOT be extracted'), + 'a `namespace detail` doc comment reached the linted corpus'); + // The other half of the exclusion: a whole file under detail/. Covered + // separately because the `namespace detail` fixture cannot reach it — a + // mutation removing the directory skip passed until this fixture existed. + check('headers under detail/ are NOT extracted at all', + !fs.existsSync(path.join(TMP_OUT, 'detail/excluded.hpp.adoc')), + 'a header under detail/ produced output in the linted corpus'); } finally { fs.rmSync(TMP_OUT, { recursive: true, force: true }); } diff --git a/doc/modules/ROOT/pages/A.specification-methods/Ac.contingencies.adoc b/doc/modules/ROOT/pages/A.specification-methods/Ac.contingencies.adoc index 6704a7930..9793b7d35 100644 --- a/doc/modules/ROOT/pages/A.specification-methods/Ac.contingencies.adoc +++ b/doc/modules/ROOT/pages/A.specification-methods/Ac.contingencies.adoc @@ -22,7 +22,7 @@ Each stream operation that may encounter a contingency await-returns a type which is a specialization of cpp:capy::io_result[capy::io_result]. These objects can be _destructured_ using a structured binding. The first binding of such destructuring is of type `std::error_code`. This binding, call it `ec`, is used to signal if and which -contingency occured: +contingency occurred: * If `ec == std::error_code{}`, no contingency occurred. * Otherwise a contingency occurred. To determine which contingency occurred,