From dd66a1d2bb2fb0579235470e57cc604e5354ee18 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Tue, 3 Mar 2015 15:17:04 +1100 Subject: [PATCH] Expanded an example. --- file_system.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/file_system.go b/file_system.go index e6c04fd..3bbdb7b 100644 --- a/file_system.go +++ b/file_system.go @@ -46,8 +46,8 @@ type FileSystem interface { ctx context.Context, req *GetInodeAttributesRequest) (*GetInodeAttributesResponse, error) - // Forget an inode ID previously issued (e.g. by LookUpInode). The kernel - // calls this when removing an inode from its internal caches. + // Forget an inode ID previously issued (e.g. by LookUpInode or MkDir). The + // kernel calls this when removing an inode from its internal caches. ForgetInode( ctx context.Context, req *ForgetInodeRequest) (*ForgetInodeResponse, error)