From 23c2f6fbc07f25a11826892d783bddcc93550d25 Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Sun, 1 Jun 2025 13:57:02 -0400 Subject: Fix stray reference to a nonexistent file. I've replaced it with something more general, which will be applicable no matter how we restructure the routing. --- src/broadcast.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/broadcast.rs') diff --git a/src/broadcast.rs b/src/broadcast.rs index 174016e..41a5e23 100644 --- a/src/broadcast.rs +++ b/src/broadcast.rs @@ -58,10 +58,9 @@ where #[allow(clippy::manual_ok_err)] future::ready(match r { Ok(event) => Some(event), - // Stop the stream here. This will disconnect SSE clients - // (see `routes.rs`), who will then resume from - // `Last-Event-ID`, allowing them to catch up by reading - // the skipped messages from the database. + // Stop the stream here. This will disconnect SSE clients (see the `/api/events` + // endpoint), who will then resume from `Last-Event-ID`, allowing them to catch up + // by reading the skipped messages from the database. // // See also: // -- cgit v1.2.3