Commit 5b91e8f6 authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

fs: fix typo in comment

Change-Id: I123f731802663adc2603d9bc34f5e376b6607fe5
parent b5c46276
......@@ -409,14 +409,14 @@ type NodeLookuper interface {
}
// OpenDir opens a directory Inode for reading its
// contents. The actual reading is driven from ReadDir, so
// contents. The actual reading is driven from Readdir, so
// this method is just for performing sanity/permission
// checks. The default is to return success.
type NodeOpendirer interface {
Opendir(ctx context.Context) syscall.Errno
}
// ReadDir opens a stream of directory entries.
// Readdir opens a stream of directory entries.
//
// Readdir essentiallly returns a list of strings, and it is allowed
// for Readdir to return different results from Lookup. For example,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment