fix: Remove superfluous &self indirection

This commit is contained in:
Tyson Liddell 2022-12-09 20:42:39 +00:00
parent e3af483fa6
commit 71873e676f
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ enum Message {
impl Message {
fn call(&self) {
println!("{:?}", &self);
println!("{:?}", self);
}
}