diff options
author | Vladimir Shefer <quameu@gmail.com> | 2020-08-05 16:40:14 +0300 |
---|---|---|
committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2020-08-05 16:36:23 +0200 |
commit | 632a497ac47150cab9c00bff6b81060af089a908 (patch) | |
tree | e402014f925656526e09c30964bb44352009e3fb | |
parent | 08845a66bb86e824f14695a96aa5062ed64edb20 (diff) | |
download | dokka-632a497ac47150cab9c00bff6b81060af089a908.tar.gz dokka-632a497ac47150cab9c00bff6b81060af089a908.tar.bz2 dokka-632a497ac47150cab9c00bff6b81060af089a908.zip |
Fix broken link in README.md
Without `https://` prefix the url leads to `https://github.com/Kotlin/dokka/blob/master/github.com/Kotlin/dokka/releases/download/v1.4.0-rc/dokka-cli-1.4.0-rc.jar` as a relative url.
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -610,7 +610,7 @@ Please see the [Dokka Maven example project](https://github.com/JetBrains/kotlin ### Using the Command Line -To run Dokka from the command line, download the [Dokka CLI runner](github.com/Kotlin/dokka/releases/download/v1.4.0-rc/dokka-cli-1.4.0-rc.jar). +To run Dokka from the command line, download the [Dokka CLI runner](https://github.com/Kotlin/dokka/releases/download/v1.4.0-rc/dokka-cli-1.4.0-rc.jar). To generate documentation, run the following command: ``` java -jar dokka-cli.jar <arguments> |