Skip to content

Commit

Permalink
fixup: macos retry_* doc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
cole-h committed Dec 9, 2024
1 parent 303f677 commit 9a34bb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/action/macos/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down Expand Up @@ -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> {
Expand Down

0 comments on commit 9a34bb3

Please sign in to comment.