Skip to content

Commit 8880856

Browse files
committed
fix: fix get functions bug
1 parent f66189c commit 8880856

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ This project includes a series of tools and libraries applicable to OpenIM, alon
6767

6868
## field
6969

70-
- `file.go`, `genutil.go`, `path.go`: Utilities for file operations and path generation.
70+
- `file.go`, `path.go`: Utilities for file operations and path generation.
7171
- Related test files.
7272

7373
## log

README_zh-CN.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666

6767
## field
6868

69-
- `file.go`, `genutil.go`, `path.go`:处理文件操作和路径生成的实用工具。
69+
- `file.go`, `path.go`:处理文件操作和路径生成的实用工具。
7070
- 相关的测试文件。
7171

7272
## log

utils/httputil/http_client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ func (c *HTTPClient) Post(ctx context.Context, url string, headers map[string]st
106106
return result, nil
107107
}
108108

109-
// PostReturn sends a JSON-encoded POST request and decodes the JSON response into the output parameter.
109+
// PostReturn sends a JSON-encoded POST request and decodes the JSON response into output parameter.
110110
func (c *HTTPClient) PostReturn(ctx context.Context, url string, headers map[string]string, input, output any) error {
111111
responseBytes, err := c.Post(ctx, url, headers, input)
112112
if err != nil {

0 commit comments

Comments
 (0)