From 416df5f29ec8d6e77c9cb8b40bb74b615e844d30 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Sun, 9 Jan 2022 11:54:15 +0100 Subject: [PATCH] Convert task into regular comment --- src/main.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main.rs b/src/main.rs index e2de9f3db..0130f187c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -50,12 +50,12 @@ fn main() -> anyhow::Result<()> { parameters.insert(key, value); } - // TASK: Since we're loading the model before setting up the watcher below, - // there's a race condition, and a modification could be missed - // between those two events. + // Since we're loading the model before setting up the watcher below, + // there's a race condition, and a modification could be missed between + // those two events. // - // This can't be addressed with the current structure, since the - // watcher closure takes ownership of the model. + // This can't be addressed with the current structure, since the watcher + // closure takes ownership of the model. let shape = model.load(¶meters)?; let mut aabb = shape.bounding_volume();