aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/util
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/util')
-rw-r--r--crates/shirabe/src/util/process_executor.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/shirabe/src/util/process_executor.rs b/crates/shirabe/src/util/process_executor.rs
index 7e6011cd..9e89bdd4 100644
--- a/crates/shirabe/src/util/process_executor.rs
+++ b/crates/shirabe/src/util/process_executor.rs
@@ -1005,7 +1005,7 @@ impl ProcessExecutor {
}
}
-/// Phase B helper trait: convert various command argument forms into `PhpMixed`.
+/// Helper trait: convert various command argument forms into `PhpMixed`.
pub trait IntoExecCommand {
fn into_exec_command(self) -> PhpMixed;
}
@@ -1187,7 +1187,7 @@ impl<'a> IntoExecOutput<'a> for Box<dyn FnMut(&str, &str) -> bool> {
fn write_back(&mut self, _value: String) {}
}
-/// Phase B helper: accept either `i64` or `PhpMixed` for `set_timeout`.
+/// Helper: accept either `i64` or `PhpMixed` for `set_timeout`.
pub trait ToTimeoutSeconds {
fn to_timeout_seconds(self) -> i64;
}