Skip to content

Commit

Permalink
Fix mistake in spelling of inheritance
Browse files Browse the repository at this point in the history
As pointed out by @kielbasi.
  • Loading branch information
michaeljones committed May 13, 2023
1 parent bf020a8 commit cf63cec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion breathe/parser/compoundsuper.py
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ def buildChildren(self, child_, nodeName_):
elif child_.nodeType == Node.ELEMENT_NODE and \
nodeName_ == 'inheritancegraph':
obj_ = graphType.factory(
caption=f"Inheritence diagram for {self.get_compoundname()}:"
caption=f"Inheritance diagram for {self.get_compoundname()}:"
)
obj_.build(child_)
self.set_inheritancegraph(obj_)
Expand Down

0 comments on commit cf63cec

Please sign in to comment.