Fixed typo in http not found message

This commit is contained in:
p11 2023-07-19 19:02:45 +02:00
parent 33b55bf4a6
commit 21d203431b

View File

@ -34,7 +34,7 @@ fn main() {
}
fn fail(mut stream: TcpStream) {
let _ = write!(stream, "HTTP/1.1 404 Not Fonud\r\n\r\n");
let _ = write!(stream, "HTTP/1.1 404 Not Found\r\n\r\n");
let _ = writeln!(stream, "Page not found!");
}