From 9b9cba4c479d22393528c6b16b1852d3e996d82a Mon Sep 17 00:00:00 2001 From: Joe Ardent Date: Wed, 5 Jun 2024 22:09:29 -0700 Subject: [PATCH] tweak the example comment --- examples/broadcast.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/broadcast.rs b/examples/broadcast.rs index 447f11d..4f4af5a 100644 --- a/examples/broadcast.rs +++ b/examples/broadcast.rs @@ -33,8 +33,8 @@ impl Node for SingleNodeBroadcast { "broadcast" => { let val = req.body.payload.get("message").unwrap().as_i64().unwrap(); self.store.insert(val); - // maybe before replying with "broadcast_ok" maybe consider telling your neighbors - // about what you heard? maybe? + // idunno, maybe consider telling your neighbors about what you heard? maybe? maybe + // every once in a while? runner.reply(&req, Body::from_type("broadcast_ok")); } "read" => {