chore: rename get_id to id, add doc comments, pre-allocate format_history

This commit is contained in:
Per Stark
2026-05-27 18:06:16 +02:00
parent 9ccf8dde25
commit 4f02fcb853
16 changed files with 52 additions and 25 deletions
+1 -1
View File
@@ -575,7 +575,7 @@ fn validate_answers(
if chunk_text.contains(&needle)
|| (!needle_norm.is_empty() && chunk_norm.contains(&needle_norm))
{
matches.insert(chunk.chunk.get_id().to_string());
matches.insert(chunk.chunk.id().to_string());
found_any = true;
}
}