Fix doc indents

This commit is contained in:
Niko 2025-02-24 11:49:55 -07:00
parent d3fe24a512
commit f75aff9659
No known key found for this signature in database

View file

@ -799,8 +799,8 @@ impl<'a, 'b> FullParams<'a, 'b> {
// following implementations are safe // following implementations are safe
// see https://github.com/ggerganov/whisper.cpp/issues/32#issuecomment-1272790388 // see https://github.com/ggerganov/whisper.cpp/issues/32#issuecomment-1272790388
// concurrent usage is prevented by &mut self on methods that modify the struct // concurrent usage is prevented by &mut self on methods that modify the struct
unsafe impl<'a, 'b> Send for FullParams<'a, 'b> {} unsafe impl Send for FullParams<'_, '_> {}
unsafe impl<'a, 'b> Sync for FullParams<'a, 'b> {} unsafe impl Sync for FullParams<'_, '_> {}
#[cfg(test)] #[cfg(test)]
mod test_whisper_params_initial_prompt { mod test_whisper_params_initial_prompt {