fix: clean remaining worker wording

This commit is contained in:
Keisuke Hirata 2026-06-26 01:13:11 +09:00
parent cb0c52e787
commit 60dbd724c5
No known key found for this signature in database
4 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
## Role ## Role
`manifest` resolves reusable profile/configuration inputs into the concrete runtime Manifest used to create or restore Pods. `manifest` resolves reusable profile/configuration inputs into the concrete runtime Manifest used to create or restore Workers.
## Boundaries ## Boundaries

View File

@ -1,6 +1,6 @@
[package] [package]
name = "pod-store" name = "pod-store"
description = "Durable Pod-name metadata/state persistence" description = "Legacy-named durable Worker metadata/state persistence"
version = "0.1.0" version = "0.1.0"
edition.workspace = true edition.workspace = true
license.workspace = true license.workspace = true

View File

@ -2,7 +2,7 @@
## Role ## Role
`tools` implements built-in tools and shared tool execution helpers used by Pods. `tools` implements built-in tools and shared tool execution helpers used by Workers.
## Boundaries ## Boundaries

View File

@ -46,7 +46,7 @@ impl std::fmt::Display for PickerError {
), ),
Self::NoWorkers { all: false } => write!( Self::NoWorkers { all: false } => write!(
f, f,
"no workers found in this workspace — use `yoi resume --all` to list all host/data-dir Pods" "no workers found in this workspace — use `yoi resume --all` to list all host/data-dir Workers"
), ),
} }
} }