From d979c5e966dc0754a7c73b7e21b9388a36904cc3 Mon Sep 17 00:00:00 2001 From: "chen.yang" Date: Thu, 2 Sep 2021 13:25:19 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=A0=BC=E5=BC=8F.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: chen.yang --- Software/Development/Language/Go/Basic/Golang_文件操作.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Software/Development/Language/Go/Basic/Golang_文件操作.md b/Software/Development/Language/Go/Basic/Golang_文件操作.md index 22720f6..e30ff77 100644 --- a/Software/Development/Language/Go/Basic/Golang_文件操作.md +++ b/Software/Development/Language/Go/Basic/Golang_文件操作.md @@ -14,7 +14,7 @@ func NewFile(fd uintptr, name string) *File Create 方法示例如下: ```go -f,err := os.Create(fileName) +f, err := os.Create(fileName) defer f.Close() if err !=nil { fmt.Println(err.Error())