浏览代码

docs: index.md fix url string

JiangJia 2 年之前
父节点
当前提交
fbb8e2123a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/index.md

+ 1 - 1
docs/index.md

@@ -32,7 +32,7 @@
 === "串行请求"
 === "串行请求"
     ```kotlin
     ```kotlin
     scopeNetLife {
     scopeNetLife {
-        val data = Get<String>("http://0000www.baidu.com/").await() // 请求A 发起GET请求并返回数据
+        val data = Get<String>("http://www.baidu.com/").await() // 请求A 发起GET请求并返回数据
         val data = Get<String>("https://github.com/liangjingkanji/Net/").await() // 请求B 将等待A请求完毕后发起GET请求并返回数据
         val data = Get<String>("https://github.com/liangjingkanji/Net/").await() // 请求B 将等待A请求完毕后发起GET请求并返回数据
     }
     }
     ```
     ```