mirror of
https://github.com/rust-lang/rustlings.git
synced 2025-12-19 23:52:15 +02:00
fix: Remove superfluous &self indirection
This commit is contained in:
@@ -10,7 +10,7 @@ enum Message {
|
||||
|
||||
impl Message {
|
||||
fn call(&self) {
|
||||
println!("{:?}", &self);
|
||||
println!("{:?}", self);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user