Skip to content

Commit

Permalink
🔧 Improved comment
Browse files Browse the repository at this point in the history
  • Loading branch information
nwrenger committed Aug 17, 2024
1 parent 2d1a9dc commit 48e0a19
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ async fn main() {
let _listener = tokio::net::TcpListener::bind("127.0.0.1:8080")
.await
.unwrap();
// starts the server, comment in and rename `_listener` to run it
// starts the server, comment in and rename `_app` and `_listener` to run it
// axum::serve(listener, app).await.unwrap();
}
```
2 changes: 1 addition & 1 deletion tests/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,6 @@ async fn main_test() {
let _listener = tokio::net::TcpListener::bind("127.0.0.1:8080")
.await
.unwrap();
// starts the server, comment in and rename `_listener` to run it
// starts the server, comment in and rename `_app` and `_listener` to run it
// axum::serve(listener, app).await.unwrap();
}

0 comments on commit 48e0a19

Please sign in to comment.