Fix clippy warnings in quiz3 solution

This commit is contained in:
sobhanmohammadi-dev 2026-07-17 20:01:47 +03:30
parent b61baff1fc
commit 66ced5eea6

View File

@ -24,7 +24,7 @@ impl<T: Display> ReportCard<T> {
fn print(&self) -> String {
format!(
"{} ({}) - achieved a grade of {}",
&self.student_name, &self.student_age, &self.grade,
self.student_name, self.student_age, self.grade,
)
}
}