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