From d216b100bd4df26fbfd176b499813b0b85cd26a4 Mon Sep 17 00:00:00 2001 From: cedi Date: Fri, 29 Nov 2024 12:44:07 +0100 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Benjamin Pannell <1760260+notheotherben@users.noreply.github.com> --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index d10e288..db030cd 100644 --- a/src/main.rs +++ b/src/main.rs @@ -98,7 +98,7 @@ async fn run(args: Args) -> Result<(), Error> { } } k if k == GitHubKind::Star.as_str() => { - info!("Backing up repositories for {}", &policy); + info!("Backing up starred repositories for {}", &policy); let stream = github_star.run(policy, &CANCEL); tokio::pin!(stream);