Merge pull request #1293 from tysonliddell/fix_self_parameter

fix: Remove superfluous &self indirection
This commit is contained in:
liv 2022-12-23 16:22:51 +01:00 committed by GitHub
commit 4521aed23b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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);
}
}