Reformat
diff --git a/sparse_strips/vello_cpu/src/dispatch/multi_threaded.rs b/sparse_strips/vello_cpu/src/dispatch/multi_threaded.rs
index 026d337..42c41b6 100644
--- a/sparse_strips/vello_cpu/src/dispatch/multi_threaded.rs
+++ b/sparse_strips/vello_cpu/src/dispatch/multi_threaded.rs
@@ -244,7 +244,10 @@
const MAX_GRANULARITY: u32 = 8;
let num_regions = buffer.len() as u32;
- assert!(self.num_threads > 0, "`MultiThreadedDispatcher` should never be created with just 0 threads.");
+ assert!(
+ self.num_threads > 0,
+ "`MultiThreadedDispatcher` should never be created with just 0 threads."
+ );
let regions_per_thread = num_regions / self.num_threads as u32;
regions_per_thread