io/fs: fix typo in comment

Change-Id: Idf8e5d808c0996e0ca00979e7b8d7627f29cd10f
Reviewed-on: https://go-review.googlesource.com/c/go/+/280552
Reviewed-by: Alberto Donizetti <alb.donizetti@gmail.com>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Trust: Alberto Donizetti <alb.donizetti@gmail.com>
This commit is contained in:
xinlingchao 2020-12-28 14:14:41 +08:00 committed by Ian Lance Taylor
parent 1d78139128
commit 4fd9455882
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ import (
var SkipDir = errors.New("skip this directory") var SkipDir = errors.New("skip this directory")
// WalkDirFunc is the type of the function called by WalkDir to visit // WalkDirFunc is the type of the function called by WalkDir to visit
// each each file or directory. // each file or directory.
// //
// The path argument contains the argument to Walk as a prefix. // The path argument contains the argument to Walk as a prefix.
// That is, if Walk is called with root argument "dir" and finds a file // That is, if Walk is called with root argument "dir" and finds a file