From 74826fc2adddc469a5f8d46bc41d6f8f594589f8 Mon Sep 17 00:00:00 2001 From: Zhizhen He Date: Tue, 18 Nov 2025 11:24:40 +0800 Subject: chore: fix typo (#2994) Fixed typo in comment. ## Checks - [x] I am happy for maintainers to push small adjustments to this PR, to speed up the review cycle - [x] I have checked that there are no existing pull requests for the same thing --- crates/atuin/src/command/client/search/engines/skim.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates') diff --git a/crates/atuin/src/command/client/search/engines/skim.rs b/crates/atuin/src/command/client/search/engines/skim.rs index 1af49574..cb7ce24f 100644 --- a/crates/atuin/src/command/client/search/engines/skim.rs +++ b/crates/atuin/src/command/client/search/engines/skim.rs @@ -203,7 +203,7 @@ fn path_dist(a: &Path, b: &Path) -> usize { let mut dist = 0; - // pop a until there's a common anscestor + // pop a until there's a common ancestor while !b.starts_with(&a) { dist += 1; a.pop(); -- cgit v1.3.1