aboutsummaryrefslogtreecommitdiffstats
path: root/crates/turtle/src/command/gen_completions.rs
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-06-13 00:58:32 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-06-13 00:58:32 +0200
commit9352a0f7cfdd5f5fc102a25d8a93218bc3dbe462 (patch)
treeb998430c307c10defb79d91abe5d30471c5c4f12 /crates/turtle/src/command/gen_completions.rs
parentchore(treewide): Remove `cargo` warnings to 0 (diff)
downloadatuin-9352a0f7cfdd5f5fc102a25d8a93218bc3dbe462.zip
chore(treewide): Fix some of `clippy`'s error
Just a run of `cargo clippy --fix`
Diffstat (limited to 'crates/turtle/src/command/gen_completions.rs')
-rw-r--r--crates/turtle/src/command/gen_completions.rs2
1 files changed, 1 insertions, 1 deletions
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();