Procházet zdrojové kódy

修复文档失效链接

drake před 3 roky
rodič
revize
7577118c11
4 změnil soubory, kde provedl 14 přidání a 14 odebrání
  1. 1 1
      docs/config.md
  2. 1 1
      docs/fastest.md
  3. 8 8
      docs/index.md
  4. 4 4
      docs/switch-dispatcher.md

+ 1 - 1
docs/config.md

@@ -50,7 +50,7 @@
 
 ## 动态配置
 
-单例[NetConfig](api/net/com.drake.net/-net-config/index.md)存储了初始化时的配置, 可以后期动态读写.
+单例[NetConfig](api/-net/com.drake.net/-net-config/index.html)存储了初始化时的配置, 可以后期动态读写.
 
 例如Retrofit的动态`BaseURL`功能就可以直接修改`NetConfig.host`
 

+ 1 - 1
docs/fastest.md

@@ -45,7 +45,7 @@ scopeNetLife {
 
 ## 类型不一致
 
-假设并发的接口返回的数据类型不同  或者 想要监听最快请求返回的结果回调请使用[transform](api/net/com.drake.net.utils/kotlinx.coroutines.-coroutine-scope/fastest.md)函数
+假设并发的接口返回的数据类型不同  或者想要监听最快请求返回的结果回调请使用`transform`函数
 
 ```kotlin
 scopeNetLife {

+ 8 - 8
docs/index.md

@@ -93,11 +93,11 @@ scopeNetLife {
 
 |请求函数|描述|
 |-|-|
-| [Get](api/net/com.drake.net/kotlinx.coroutines.-coroutine-scope/-get.md)|标准Http请求方法|
-| [Post](api/net/com.drake.net/kotlinx.coroutines.-coroutine-scope/-post.md)|标准Http请求方法|
-| [Head](api/net/com.drake.net/kotlinx.coroutines.-coroutine-scope/-head.md)|标准Http请求方法|
-| [Options](api/net/com.drake.net/kotlinx.coroutines.-coroutine-scope/-options.md)|标准Http请求方法|
-| [Trace](api/net/com.drake.net/kotlinx.coroutines.-coroutine-scope/-trace.md)|标准Http请求方法|
-| [Delete](api/net/com.drake.net/kotlinx.coroutines.-coroutine-scope/-delete.md)|标准Http请求方法|
-| [Put](api/net/com.drake.net/kotlinx.coroutines.-coroutine-scope/-put.md)|标准Http请求方法|
-| [Patch](api/net/com.drake.net/kotlinx.coroutines.-coroutine-scope/-patch.md)|标准Http请求方法|
+| [Get](api/-net/com.drake.net/-get.html)|标准Http请求方法|
+| [Post](api/-net/com.drake.net/-post.html)|标准Http请求方法|
+| [Head](api/-net/com.drake.net/-head.html)|标准Http请求方法|
+| [Options](api/-net/com.drake.net/-options.html)|标准Http请求方法|
+| [Trace](api/-net/com.drake.net/-trace.html)|标准Http请求方法|
+| [Delete](api/-net/com.drake.net/-delete.html)|标准Http请求方法|
+| [Put](api/-net/com.drake.net/-put.html)|标准Http请求方法|
+| [Patch](api/-net/com.drake.net/-patch.html)|标准Http请求方法|

+ 4 - 4
docs/switch-dispatcher.md

@@ -8,9 +8,9 @@
 
 |函数|描述|
 |-|-|
-|[withMain](api/net/com.drake.net.utils/with-main.md)|切换到主线程调度器|
-|[withIO](api/net/com.drake.net.utils/with-i-o.md)|切换到IO线程调度器|
-|[withDefault](api/net/com.drake.net.utils/with-default.md)|切换到默认线程调度器|
-|[withUnconfined](api/net/com.drake.net.utils/with-unconfined.md)|切换到无限制调度器|
+|[withMain](api/-net/com.drake.net/with-main.html)|切换到主线程调度器|
+|[withIO](api/-net/com.drake.net/with-i-o.html)|切换到IO线程调度器|
+|[withDefault](api/-net/com.drake.net/with-default.html)|切换到默认线程调度器|
+|[withUnconfined](api/-net/com.drake.net/with-unconfined.html)|切换到无限制调度器|
 |launch|无返回值的协程挂起函数|
 |async|有返回值的协程挂起函数, 通过`await()`返回值|