Skip to content

Commit f55e719

Browse files
committed
Run of go-fmt
1 parent 33906a5 commit f55e719

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

readdir.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,11 @@ func (p *Path) ReadDirRecursive() (PathList, error) {
9595
// ReadDirRecursiveFiltered returns a PathList containing the content of the directory
9696
// and its subdirectories pointed by the current Path, filtered by the given skipFilter
9797
// and filters:
98-
// - `recursionFilter` is a filter that is checked to determine if the subdirectory must
99-
// by visited recursively (if the filter rejects the entry, the entry is not visited
100-
// but can still be added to the result)
101-
// - `filters` are the filters that are checked to determine if the entry should be
102-
// added to the resulting PathList
98+
// - `recursionFilter` is a filter that is checked to determine if the subdirectory must
99+
// by visited recursively (if the filter rejects the entry, the entry is not visited
100+
// but can still be added to the result)
101+
// - `filters` are the filters that are checked to determine if the entry should be
102+
// added to the resulting PathList
103103
func (p *Path) ReadDirRecursiveFiltered(recursionFilter ReadDirFilter, filters ...ReadDirFilter) (PathList, error) {
104104
infos, err := ioutil.ReadDir(p.path)
105105
if err != nil {

0 commit comments

Comments
 (0)