Răsfoiți Sursa

Update request.md

补充缺失的括号
JZen 3 ani în urmă
părinte
comite
84a1478bda
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 2 2
      docs/request.md

+ 2 - 2
docs/request.md

@@ -128,8 +128,8 @@ scopeNetLife { // 创建作用域
 ```kotlin
 scopeNetLife {
     tvFragment.text = Post<String>("api") {
-        gson("name" to name, "model" to Model() // 参数支持Gson可解析的对象
-        // fastJson("name" to name, "model" to Model() // 使用FastJson
+        gson("name" to name, "model" to Model()) // 参数支持Gson可解析的对象
+        // fastJson("name" to name, "model" to Model()) // 使用FastJson
     }.await()
 }
 ```