diff options
author | Subhrajyoti Sen <subhrajyoti12@gmail.com> | 2023-10-17 14:44:51 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-17 11:14:51 +0200 |
commit | 73b81ac375c927176205543dec813faa32abe811 (patch) | |
tree | 7f0beea63c47b33cceec33f68f70f957766e0261 | |
parent | 9bbcc21affe7a2b787c5a8cfb64f416cf226a0fd (diff) | |
download | dokka-73b81ac375c927176205543dec813faa32abe811.tar.gz dokka-73b81ac375c927176205543dec813faa32abe811.tar.bz2 dokka-73b81ac375c927176205543dec813faa32abe811.zip |
Fix docs link for OkHttp (#3213)
The documentation for OkHttp has been moved to https://square.github.io/okhttp/5.x/okhttp/okhttp3/
As per https://github.com/square/okhttp/commit/05718b4d87b591820a178b3fb6a4325c83c55d7a, they are currently using HTML for docs and not markdown
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | docs/topics/dokka-introduction.md | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -21,7 +21,7 @@ Some libraries that use Dokka for their API reference documentation: * [Bitmovin](https://cdn.bitmovin.com/player/android/3/docs/index.html) * [Hexagon](https://hexagonkt.com/api/index.html) * [Ktor](https://api.ktor.io/) -* [OkHttp](https://square.github.io/okhttp/4.x/okhttp/okhttp3/) (Markdown) +* [OkHttp](https://square.github.io/okhttp/5.x/okhttp/okhttp3/) * [Gradle](https://docs.gradle.org/current/kotlin-dsl/index.html) You can run Dokka using [Gradle](https://kotlinlang.org/docs/dokka-gradle.html), diff --git a/docs/topics/dokka-introduction.md b/docs/topics/dokka-introduction.md index fd33a3cb..e4bff95a 100644 --- a/docs/topics/dokka-introduction.md +++ b/docs/topics/dokka-introduction.md @@ -15,7 +15,7 @@ Here are some libraries that use Dokka for their API reference documentation: * [Bitmovin](https://cdn.bitmovin.com/player/android/3/docs/index.html) * [Hexagon](https://hexagonkt.com/api/index.html) * [Ktor](https://api.ktor.io/) -* [OkHttp](https://square.github.io/okhttp/4.x/okhttp/okhttp3/) (Markdown) +* [OkHttp](https://square.github.io/okhttp/5.x/okhttp/okhttp3/) You can run Dokka using [Gradle](dokka-gradle.md), [Maven](dokka-maven.md) or from the [command line](dokka-cli.md). It is also [highly pluggable](dokka-plugins.md). |