From b05a711dc2a53f865840c5f59159ca4ce7fd1b89 Mon Sep 17 00:00:00 2001 From: Simon Ogorodnik Date: Wed, 7 Jun 2017 21:40:21 +0300 Subject: Fix slashes in external linking documentation --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a5ea058f..d766f1d5 100644 --- a/README.md +++ b/README.md @@ -103,8 +103,8 @@ dokka { // Allows linking to documentation of the project's dependencies (generated with Javadoc or Dokka) // Repeat for multiple links externalDocumentationLink { - // URL of the generated documentation - url = new URL("https://example.com/docs") + // Root URL of the generated documentation to link with. The trailing slash is required! + url = new URL("https://example.com/docs/") // If package-list file located in non-standard location // packageListUrl = new URL("file:///home/user/localdocs/package-list") @@ -287,8 +287,8 @@ The available configuration options are shown below: - - https://example.com/docs + + https://example.com/docs/ @@ -344,7 +344,7 @@ The Ant task supports the following attributes: * `` - Per package options for package `kotlin` and sub-packages of it * `noStdlibLink` - No default documentation link to kotlin-stdlib - * `` - + * `` - linking to external documentation, packageListUrl should be used if package-list located not in standard location -- cgit