diff options
author | Keuin <[email protected]> | 2023-07-29 01:23:36 +0800 |
---|---|---|
committer | Keuin <[email protected]> | 2023-07-29 01:23:36 +0800 |
commit | 6293c70e346ec9b94372ee44d3bdd312ee918e90 (patch) | |
tree | 72a478958684dfedd29adca77a2e0061397ba009 /src/main.rs | |
parent | 686bd8b061bc47c874a056b912a02be71a374a8e (diff) |
fix capitalized
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index d52d3b9..d45fe8a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -91,7 +91,7 @@ async fn main() { SockAddr(addr) } Err(why) => { - error!("Failed to resolve address {}: {}", addr, why); + error!("failed to resolve address {}: {}", addr, why); Destination::None } } |