doc: add missing README file; lint: correct reported typo
Some checks failed
Zig Project Action / Lint, Spell-check and test zig project (push) Failing after 1m2s

This commit is contained in:
2025-11-25 19:47:00 +01:00
parent 04f082d801
commit ba344e7d65
2 changed files with 124 additions and 1 deletions

View File

@@ -174,7 +174,7 @@ fn compute_char_score(query: u8, query_lower: u8, target_prev: ?u8, target_curr:
return score;
}
/// Scoring for separator characters. Slightly prefering path separators over other separators.
/// Scoring for separator characters. Slightly preferring path separators over other separators.
fn score_separator_at_pos(prev: u8) u32 {
return switch (prev) {
'/', '\\' => 5, // prefer path separators...