From cf63cecd1a73bbcfec20694d6109fbd6c3db4a15 Mon Sep 17 00:00:00 2001 From: Michael Jones Date: Sat, 13 May 2023 18:13:48 +0100 Subject: [PATCH] Fix mistake in spelling of inheritance As pointed out by @kielbasi. --- breathe/parser/compoundsuper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/breathe/parser/compoundsuper.py b/breathe/parser/compoundsuper.py index 52b8be9e..79050edd 100644 --- a/breathe/parser/compoundsuper.py +++ b/breathe/parser/compoundsuper.py @@ -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_)