From a5ca3b88d9729fb10d4a06cd8bc4cc9f78b430fd Mon Sep 17 00:00:00 2001 From: Olivier Roy Date: Wed, 6 Mar 2024 09:28:25 -0500 Subject: [PATCH] Don't suggest to run `pr_push()` immediately since the action should be done later (when the work is done) --- R/pr.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/pr.R b/R/pr.R index 3b265038b..38e0f539d 100644 --- a/R/pr.R +++ b/R/pr.R @@ -224,7 +224,7 @@ pr_init <- function(branch) { config_key <- glue("branch.{branch}.created-by") gert::git_config_set(config_key, value = "usethis::pr_init", repo = repo) - ui_bullets(c("_" = "Use {.run usethis::pr_push} to create a PR.")) + ui_bullets(c("_" = "Use {.fun usethis::pr_push} to create a PR.")) invisible() }