Merge pull request #3740 from justinsb/comment_vfs_readtree

Automatic merge from submit-queue.

Clarify comment on ReadTree
This commit is contained in:
Kubernetes Submit Queue 2017-10-31 14:39:01 -07:00 committed by GitHub
commit 611780ccd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ type Path interface {
// ReadDir lists the files in a particular Path
ReadDir() ([]Path, error)
// ReadTree lists all files in the subtree rooted at the current Path
// ReadTree lists all files (recursively) in the subtree rooted at the current Path
ReadTree() ([]Path, error)
}