From a88574204d0465ca123364e23166c5ae56a152b3 Mon Sep 17 00:00:00 2001 From: SteveLauC Date: Thu, 26 Sep 2024 15:05:45 +0800 Subject: [PATCH] docs: don't call execute("bin_name_str") (#916) --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 324d4d51..7f1f6d82 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -48,7 +48,7 @@ To add a new `step` to `topgrade`: // Invoke the new step to get things updated! ctx.run_type() - .execute("xxx") + .execute(xxx) .arg(/* args required by this step */) .status_checked() }