Fix documentation homepage (#81)

This adds a trailing slash that was missing from the documentation
homepage.
This commit is contained in:
Daniel Chao
2024-02-07 07:33:19 -08:00
committed by Dan Chao
parent 6ec71ef198
commit 9e987b3523

View File

@@ -17,7 +17,7 @@ package org.pkl.core;
/** Information about the Pkl package index. */
public final class PklInfo {
private static final String PACKAGE_INDEX_HOMEPAGE = "https://pkl-lang.org/package-docs";
private static final String PACKAGE_INDEX_HOMEPAGE = "https://pkl-lang.org/package-docs/";
private static final PklInfo CURRENT;
private final PackageIndex packageIndex;