From e55b2926d81aa59c28d49c4d4661e9d08ec4475f Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Tue, 24 Mar 2015 15:09:18 +1100 Subject: [PATCH] Updated doc.go. --- doc.go | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/doc.go b/doc.go index 1e60be1..8bbdaf4 100644 --- a/doc.go +++ b/doc.go @@ -16,15 +16,13 @@ // // The primary elements of interest are: // -// * The FileSystem interface, which defines the methods a file system must -// implement. -// -// * fuseutil.NotImplementedFileSystem, which may be embedded to obtain -// default implementations for all methods that are not of interest to a -// particular file system. +// * The fuseops package, which defines the operations that fuse might send +// to your userspace daemon. // // * Mount, a function that allows for mounting a file system. // // In order to use this package to mount file systems on OS X, the system must -// have FUSE for OS X installed: http://osxfuse.github.io/ +// have FUSE for OS X installed (see http://osxfuse.github.io/). Do note that +// there are several OS X-specific oddities; grep through the documentation for +// more info. package fuse