From 60dbd724c5496e80c7fe31a51f1425a7688e50ee Mon Sep 17 00:00:00 2001 From: Hare Date: Fri, 26 Jun 2026 01:13:11 +0900 Subject: [PATCH] fix: clean remaining worker wording --- crates/manifest/README.md | 2 +- crates/pod-store/Cargo.toml | 2 +- crates/tools/README.md | 2 +- crates/tui/src/picker.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/manifest/README.md b/crates/manifest/README.md index 61de79a2..7832b9ea 100644 --- a/crates/manifest/README.md +++ b/crates/manifest/README.md @@ -2,7 +2,7 @@ ## 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 diff --git a/crates/pod-store/Cargo.toml b/crates/pod-store/Cargo.toml index cf6ea475..2488035d 100644 --- a/crates/pod-store/Cargo.toml +++ b/crates/pod-store/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pod-store" -description = "Durable Pod-name metadata/state persistence" +description = "Legacy-named durable Worker metadata/state persistence" version = "0.1.0" edition.workspace = true license.workspace = true diff --git a/crates/tools/README.md b/crates/tools/README.md index 3b132654..4ee5fd52 100644 --- a/crates/tools/README.md +++ b/crates/tools/README.md @@ -2,7 +2,7 @@ ## 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 diff --git a/crates/tui/src/picker.rs b/crates/tui/src/picker.rs index ca463b44..5dd428c1 100644 --- a/crates/tui/src/picker.rs +++ b/crates/tui/src/picker.rs @@ -46,7 +46,7 @@ impl std::fmt::Display for PickerError { ), Self::NoWorkers { all: false } => write!( 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" ), } }