mirror of
https://github.com/rust-lang/rustlings.git
synced 2025-01-26 04:22:03 +02:00
Merge pull request #1293 from tysonliddell/fix_self_parameter
fix: Remove superfluous &self indirection
This commit is contained in:
commit
4521aed23b
@ -10,7 +10,7 @@ enum Message {
|
||||
|
||||
impl Message {
|
||||
fn call(&self) {
|
||||
println!("{:?}", &self);
|
||||
println!("{:?}", self);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user