Skip to content

Commit 59202ba

Browse files
committed
docs: remove backtick code spans from table headers in supervision and platform-support
1 parent b46893f commit 59202ba

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/platform-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ matrices and fine print in one place.
1919

2020
`ProcessGroup::mechanism()` reports which one you actually got:
2121

22-
| `Mechanism` | Platform | How containment works |
22+
| Mechanism | Platform | How containment works |
2323
|---|---|---|
2424
| `JobObject` | Windows | A Job Object with kill-on-close; children are created suspended, assigned to the job, then resumed — so even a grandchild forked in the first instant is contained |
2525
| `CgroupV2` | Linux (with delegation) | A private cgroup; children join in `pre_exec`, before `exec`, so descendants can never escape; teardown is `cgroup.kill` |

docs/supervision.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ which honors the command's `ok_codes`): an exit code outside the accepted set
5757
`ok_codes([0, 2])` that exits `2` is a success, so `OnCrash` treats it as clean,
5858
not a crash.
5959

60-
| `RestartPolicy` | Restarts after… |
60+
| RestartPolicy | Restarts after… |
6161
|---|---|
6262
| `OnCrash` *(default)* | crashes only; a clean exit ends supervision (`PolicySatisfied`) |
6363
| `Always` | every completed run, clean or not — pair it with `stop_when`/`max_restarts` or it loops forever |

0 commit comments

Comments
 (0)