From a99d69abcecd356d2903066ea65246f835adcfd9 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Mon, 27 Jul 2015 15:44:54 +1000 Subject: [PATCH] Fixed a couple of out of date references. --- errors.go | 2 +- fuseops/doc.go | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) 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