From 8dfa10019bd8302bee10217cb66a812de747e526 Mon Sep 17 00:00:00 2001 From: James Westman Date: Fri, 26 Jul 2024 21:50:50 -0500 Subject: [PATCH] lsp: Fix online docs links for interfaces --- blueprintcompiler/gir.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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