diff --git a/blueprintcompiler/gir.py b/blueprintcompiler/gir.py index 459086e..9bcde22 100644 --- a/blueprintcompiler/gir.py +++ b/blueprintcompiler/gir.py @@ -549,7 +549,7 @@ class Interface(GirNode, GirType): @property def online_docs(self) -> T.Optional[str]: if ns := self.get_containing(Namespace).online_docs: - return f"{ns}interface.{self.name}.html" + return f"{ns}iface.{self.name}.html" else: return None