We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents de2ba81 + e272a43 commit e7ba9d4Copy full SHA for e7ba9d4
src/trait/supertraits.md
@@ -26,9 +26,10 @@ trait CompSciStudent: Programmer + Student {
26
27
fn comp_sci_student_greeting(student: &dyn CompSciStudent) -> String {
28
format!(
29
- "My name is {} and I attend {}. My Git username is {}",
+ "My name is {} and I attend {}. My favorite language is {}. My Git username is {}",
30
student.name(),
31
student.university(),
32
+ student.fav_language(),
33
student.git_username()
34
)
35
}
0 commit comments