lsp: Fix online docs links for interfaces

This commit is contained in:
James Westman 2024-07-26 21:50:50 -05:00
parent 24eed1048e
commit 8dfa10019b

View file

@ -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