Skip to content

Commit 5cbd303

Browse files
committed
fix typo
1 parent 15d4778 commit 5cbd303

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rusty-live-server"
3-
version = "0.5.5"
3+
version = "0.5.6"
44
edition = "2021"
55

66
[dependencies]

src/routing.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ async fn serve_file(
149149
}
150150

151151
let response = format!(
152-
"HTTP/1.1 200 OK\r\nnContent-Type: {}\r\nContent-Length: {}\r\nConnection: close\r\n\r\n",
152+
"HTTP/1.1 200 OK\r\nContent-Type: {}\r\nContent-Length: {}\r\nConnection: close\r\n\r\n",
153153
mime,
154154
contents.len()
155155
);

0 commit comments

Comments
 (0)