From 9a34bb3b8e5ff4559d064ed6a66f39ce6aeb2cc4 Mon Sep 17 00:00:00 2001 From: Cole Helbling Date: Mon, 9 Dec 2024 10:33:11 -0800 Subject: [PATCH] fixup: macos retry_* doc comments --- src/action/macos/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/action/macos/mod.rs b/src/action/macos/mod.rs index 065dd647..330ffcd1 100644 --- a/src/action/macos/mod.rs +++ b/src/action/macos/mod.rs @@ -149,7 +149,7 @@ pub(crate) async fn wait_for_nix_store_dir() -> Result<(), ActionErrorKind> { Ok(()) } -/// Wait for `launchctl bootstrap {domain} {service}` to succeed up to `retry_tokens * 500ms` amount +/// Wait for `launchctl bootstrap {domain} {service_path}` to succeed up to `retry_tokens * 500ms` amount /// of time. #[tracing::instrument] pub(crate) async fn retry_bootstrap( @@ -205,7 +205,7 @@ pub(crate) async fn retry_bootstrap( Ok(()) } -/// Wait for `launchctl bootout {domain} {service_path}` to succeed up to `retry_tokens * 500ms` amount +/// Wait for `launchctl bootout {domain}/{service_name}` to succeed up to `retry_tokens * 500ms` amount /// of time. #[tracing::instrument] pub(crate) async fn retry_bootout(domain: &str, service_name: &str) -> Result<(), ActionErrorKind> {