Skip to content

Commit

Permalink
chore: cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
dgsantana committed Nov 27, 2023
1 parent fc9b5f7 commit 9479cd3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions integrations/axum/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,8 @@ pub async fn generate_request_and_parts(
///
/// // run our app with hyper
/// // `axum::Server` is a re-export of `hyper::Server`
/// let listener = tokio::net::TcpListener::bind("0.0.0.0:3000").await.unwrap();
/// let listener =
/// tokio::net::TcpListener::bind("0.0.0.0:3000").await.unwrap();
/// axum::serve(listener, app.into_make_service())
/// .await
/// .unwrap();
Expand Down Expand Up @@ -979,7 +980,8 @@ fn provide_contexts(
///
/// // run our app with hyper
/// // `axum::Server` is a re-export of `hyper::Server`
/// let listener = tokio::net::TcpListener::bind("0.0.0.0:3000").await.unwrap();
/// let listener =
/// tokio::net::TcpListener::bind("0.0.0.0:3000").await.unwrap();
/// axum::serve(listener, app.into_make_service())
/// .await
/// .unwrap();
Expand Down

0 comments on commit 9479cd3

Please sign in to comment.