diff --git a/lectures/26_inheritance_II/README.md b/lectures/26_inheritance_II/README.md index c889a48..d94fbe1 100644 --- a/lectures/26_inheritance_II/README.md +++ b/lectures/26_inheritance_II/README.md @@ -14,11 +14,7 @@ - The Diamond Problem occurs in multiple inheritance when two classes inherit from the same base class, and a fourth class inherits from both of those. - Human - / \ - Student Worker - \ / - CSStudent +
\`\`\` Human / \ Student Worker \ / CSStudent \`\`\`- Both Student and Worker inherit from Human.