From ffd6c474e8061905b0af8364dddc1407fb85f55f Mon Sep 17 00:00:00 2001 From: Jakob Waibel <59575534+JakWai01@users.noreply.github.com> Date: Thu, 25 Nov 2021 17:36:55 +0100 Subject: [PATCH] =?UTF-8?q?docs:=20add=20missing=20=E2=80=9Ckernel?= =?UTF-8?q?=E2=80=9D=20(#117)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fuseops/ops.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fuseops/ops.go b/fuseops/ops.go index 7902a0e..353c70b 100644 --- a/fuseops/ops.go +++ b/fuseops/ops.go @@ -443,7 +443,7 @@ type UnlinkOp struct { // Open a directory inode. // -// On Linux the sends this when setting up a struct file for a particular inode +// On Linux the kernel sends this when setting up a struct file for a particular inode // with type directory, usually in response to an open(2) call from a // user-space process. On OS X it may not be sent for every open(2) (cf. // https://github.com/osxfuse/osxfuse/issues/199). @@ -578,7 +578,7 @@ type ReleaseDirHandleOp struct { // Open a file inode. // -// On Linux the sends this when setting up a struct file for a particular inode +// On Linux the kernel sends this when setting up a struct file for a particular inode // with type file, usually in response to an open(2) call from a user-space // process. On OS X it may not be sent for every open(2) // (cf.https://github.com/osxfuse/osxfuse/issues/199).