From 323a5c5d31c5e523feed8695c52fd5cc822497e8 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Sun, 27 Aug 2023 20:10:17 +0200 Subject: [PATCH] fix typo --- crates/re_space_view_spatial/src/parts/points3d.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/re_space_view_spatial/src/parts/points3d.rs b/crates/re_space_view_spatial/src/parts/points3d.rs index 9143448a44a36..c64b2f2b14ea1 100644 --- a/crates/re_space_view_spatial/src/parts/points3d.rs +++ b/crates/re_space_view_spatial/src/parts/points3d.rs @@ -181,7 +181,7 @@ impl Points3DPart { #[cfg(not(target_arch = "wasm32"))] if annotation_infos.len() > 1000 { - // Dropping this is suprisingly expensive, so do it in a background thread: + // Dropping this is surprisingly expensive, so do it in a background thread: rayon::spawn(move || { re_tracing::profile_scope!("drop(annotation_infos)"); std::mem::drop(annotation_infos);