From 9de6c03dfbaa08890b1ec8322a97b7097d4a9d37 Mon Sep 17 00:00:00 2001 From: mat Date: Thu, 27 Oct 2022 21:22:47 -0500 Subject: use variables directly in format strings thanks clippy we love you --- azalea-auth/examples/auth.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'azalea-auth/examples') diff --git a/azalea-auth/examples/auth.rs b/azalea-auth/examples/auth.rs index 8f7cf7f9..350c5b17 100644 --- a/azalea-auth/examples/auth.rs +++ b/azalea-auth/examples/auth.rs @@ -15,5 +15,5 @@ async fn main() { ) .await .unwrap(); - println!("{:?}", auth_result); + println!("{auth_result:?}"); } -- cgit v1.2.3