From 9352a0f7cfdd5f5fc102a25d8a93218bc3dbe462 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Sat, 13 Jun 2026 00:58:32 +0200 Subject: chore(treewide): Fix some of `clippy`'s error Just a run of `cargo clippy --fix` --- crates/turtle/src/command/gen_completions.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates/turtle/src/command/gen_completions.rs') diff --git a/crates/turtle/src/command/gen_completions.rs b/crates/turtle/src/command/gen_completions.rs index 7cc697d4..9f13bffc 100644 --- a/crates/turtle/src/command/gen_completions.rs +++ b/crates/turtle/src/command/gen_completions.rs @@ -61,7 +61,7 @@ pub(crate) struct Cmd { impl Cmd { pub(crate) fn run(self) -> Result<()> { - let Cmd { shell, out_dir } = self; + let Self { shell, out_dir } = self; let mut cli = crate::Atuin::command(); -- cgit v1.3.1