diff options
| author | mat <github@matdoes.dev> | 2022-10-27 21:22:47 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-10-27 21:22:47 -0500 |
| commit | 9de6c03dfbaa08890b1ec8322a97b7097d4a9d37 (patch) | |
| tree | f8a2e96893036b32ab2299df49fa5b88fb5187da /azalea-auth/examples | |
| parent | 7ae8bfab5095b8d6fe71f32a0b1cda8a47ccff94 (diff) | |
| download | azalea-drasl-9de6c03dfbaa08890b1ec8322a97b7097d4a9d37.tar.xz | |
use variables directly in format strings
thanks clippy we love you
Diffstat (limited to 'azalea-auth/examples')
| -rw-r--r-- | azalea-auth/examples/auth.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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:?}"); } |
