From 6ca129235045846ad1dd644a0ab362dd4107a7fe Mon Sep 17 00:00:00 2001 From: Fintan Halpenny Date: Wed, 29 Oct 2025 09:13:35 +0000 Subject: [PATCH] cli/unfollow: rename options to args Have consistent naming for args --- crates/radicle-cli/src/commands/unfollow.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/radicle-cli/src/commands/unfollow.rs b/crates/radicle-cli/src/commands/unfollow.rs index 0932ed87..367b02b3 100644 --- a/crates/radicle-cli/src/commands/unfollow.rs +++ b/crates/radicle-cli/src/commands/unfollow.rs @@ -7,10 +7,10 @@ use crate::terminal as term; pub use args::Args; pub(crate) use args::ABOUT; -pub fn run(options: Args, ctx: impl term::Context) -> anyhow::Result<()> { +pub fn run(args: Args, ctx: impl term::Context) -> anyhow::Result<()> { let profile = ctx.profile()?; let mut node = radicle::Node::new(profile.socket()); - let nid = options.nid; + let nid = args.nid; let unfollowed = match node.unfollow(nid) { Ok(updated) => updated,