From 65519bd6ca8be4fef93d0105437bdedcd5cf4f0b Mon Sep 17 00:00:00 2001 From: semyonsinchenko Date: Thu, 22 Jan 2026 16:08:59 +0100 Subject: [PATCH] fix links Correct links are: - https://graphframes.io/api/python/graphframes.lib.html (instead of graphframes/lib) - https://graphframes.io/api/python/graphframes.examples.html (instead of graphframes/examples) --- project/LaikaCustomDirectives.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/LaikaCustomDirectives.scala b/project/LaikaCustomDirectives.scala index 461cdc901..271e2a3fa 100644 --- a/project/LaikaCustomDirectives.scala +++ b/project/LaikaCustomDirectives.scala @@ -16,9 +16,9 @@ object LaikaCustomDirectives extends DirectiveRegistry { error => InvalidSpan(s"Invalid PyDocs baseUri: $error", source), baseUri => { val companion = if (pyClass.startsWith("graphframes.lib")) { - SpanLink.external(s"$baseUri/graphframes/lib.html#$pyClass") + SpanLink.external(s"$baseUri/graphframes.lib.html#$pyClass") } else if (pyClass.startsWith("graphframes.examples")) { - SpanLink.external(s"$baseUri/graphframes/examples.html#$pyClass") + SpanLink.external(s"$baseUri/graphframes.examples.html#$pyClass") } else { SpanLink.external(s"$baseUri/graphframes.html#$pyClass") }