We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 229c694 commit e272a43Copy full SHA for e272a43
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