diff --git a/errors.go b/errors.go index bc9f902..455c79b 100644 --- a/errors.go +++ b/errors.go @@ -18,7 +18,7 @@ import "syscall" const ( // Errors corresponding to kernel error numbers. These may be treated - // specially by fuseops.Op.Respond methods. + // specially by Connection.Reply. EEXIST = syscall.EEXIST EINVAL = syscall.EINVAL EIO = syscall.EIO diff --git a/fuseops/doc.go b/fuseops/doc.go index 5e4a880..8eccde0 100644 --- a/fuseops/doc.go +++ b/fuseops/doc.go @@ -12,7 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -// Package fuseops contains implementations of the fuse.Op interface that may -// be returned by fuse.Connection.ReadOp. See documentation in that package for -// more. +// Package fuseops contains ops that may be returned by fuse.Connection.ReadOp. +// See documentation in that package for more. package fuseops