Remove double semicolon in SSE example

This commit is contained in:
Bill 2024-04-19 16:23:45 -07:00 committed by Sergio Benitez
parent 3079dbfa85
commit 35a100fdec
1 changed files with 1 additions and 1 deletions

View File

@ -370,7 +370,7 @@ impl Event {
///
/// ```rust
/// # use rocket::*;
/// use rocket::response::stream::{Event, EventStream};;
/// use rocket::response::stream::{Event, EventStream};
/// use rocket::tokio::time::{self, Duration};
///
/// #[get("/events")]