Browse Source

修复文档死链

drake 3 years ago
parent
commit
5bc055c0ab
5 changed files with 8 additions and 8 deletions
  1. 1 1
      docs/auto-dialog.md
  2. 0 0
      docs/coroutine-request.md
  3. 1 1
      docs/kotlin-serialization.md
  4. 4 4
      docs/switch-thread.md
  5. 2 2
      mkdocs.yml

+ 1 - 1
docs/auto-dialog.md

@@ -18,7 +18,7 @@ scopeDialog {
 
 <img src="https://i.imgur.com/egUM3V1.png" width="300"/>
 
-> 想直接使用iOS风格的加载框可以使用: [BubbleDialog](https://liangjingkanji.github.io/Tooltip/bubble/)
+> 想直接使用iOS风格的加载框可以使用: [BubbleDialog](https://liangjingkanji.github.io/Tooltip/bubble.html)
 
 ## 自定义加载框
 

+ 0 - 0
docs/parallel.md → docs/coroutine-request.md


+ 1 - 1
docs/kotlin-serialization.md

@@ -20,7 +20,7 @@
 
 ## 配置转换器
 
-这里使用Demo中的[SerializationConvert](https://github.com/liangjingkanji/Net/blob/master/sample/src/main/java/com/drake/net/sample/convert/SerializationConvert.kt)作演示.
+这里使用Demo中的[SerializationConvert](https://github.com/liangjingkanji/Net/blob/master/sample/src/main/java/com/drake/net/sample/converter/SerializationConvert.kt)作演示.
 如果你业务有特殊需要可以复制Demo中的转换器代码稍加修改
 
 === "全局配置"

+ 4 - 4
docs/switch-dispatcher.md → docs/switch-thread.md

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

+ 2 - 2
mkdocs.yml

@@ -36,7 +36,7 @@ markdown_extensions:
 
 nav:
   - 使用: index.md
-  - 协程请求: parallel.md
+  - 协程请求: coroutine-request.md
   - 同步请求: sync-request.md
   - 队列请求: enqueue-request.md
   - ViewModel: view-model.md
@@ -58,7 +58,7 @@ nav:
       - 自动缺省页: auto-state.md
       - 自动下拉刷新: auto-refresh.md
       - 自动分页加载: auto-page.md
-  - 切换线程: switch-dispatcher.md
+  - 切换线程: switch-thread.md
   - 标签: tag.md
   - 上传文件: upload-file.md
   - 下载文件: download-file.md