Skip to content

Commit

Permalink
fix: typo quick start doc snippet
Browse files Browse the repository at this point in the history
  • Loading branch information
kristianpaul authored Feb 29, 2024
1 parent 8797329 commit 94ee8cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/quick_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ impl ProxyHttp for LB {
.select(b"", 256) // hash doesn't matter for round robin
.unwrap();

println!("upstream peer is: {:upstream?}");
println!("upstream peer is: {:?}", upstream);

// Set SNI to one.one.one.one
let peer = Box::new(HttpPeer::new(upstream, true, "one.one.one.one".to_string()));
Expand Down Expand Up @@ -321,4 +321,4 @@ The full code for this example is available in this repository under
Other examples that you may find helpful are also available here

[pingora-proxy/examples/](../pingora-proxy/examples/)
[pingora/examples](../pingora/examples/)
[pingora/examples](../pingora/examples/)

0 comments on commit 94ee8cd

Please sign in to comment.