diff --git a/lectures/26_inheritance_II/README.md b/lectures/26_inheritance_II/README.md index d94fbe1..77b6e0a 100644 --- a/lectures/26_inheritance_II/README.md +++ b/lectures/26_inheritance_II/README.md @@ -14,7 +14,13 @@ - 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.