From 968ed63a1aa0165e6e0700641c6a2fd55f955799 Mon Sep 17 00:00:00 2001 From: sfw <909075325@qq.com> Date: Fri, 15 Jun 2018 16:15:14 +0800 Subject: [PATCH] Signed-off-by: sfw <909075325@qq.com> --- ch1-basic/ch1-06-goroutine.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch1-basic/ch1-06-goroutine.md b/ch1-basic/ch1-06-goroutine.md index 59e12da..37383cc 100644 --- a/ch1-basic/ch1-06-goroutine.md +++ b/ch1-basic/ch1-06-goroutine.md @@ -401,7 +401,7 @@ type gatefs struct { func (fs gatefs) Lstat(p string) (os.FileInfo, error) { fs.enter() defer fs.leave() - return fs.fs.Lstat(p) + return fs.Lstat(p) } ```