From 0a588af19f2ae90e183e42b1f0b31dd9794518e8 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Mon, 23 Mar 2015 16:16:51 +1100 Subject: [PATCH] Fixed some comments. --- samples/in_process.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/samples/in_process.go b/samples/in_process.go index bdb2b57..761133b 100644 --- a/samples/in_process.go +++ b/samples/in_process.go @@ -55,8 +55,8 @@ type SampleTest struct { mfs *fuse.MountedFileSystem } -// Mount the supplied file system and initialize the other exported fields of -// the struct. Panics on error. +// Mount t.FileSystem and initialize the other exported fields of the struct. +// Panics on error. // // REQUIRES: t.FileSystem has been set. func (t *SampleTest) SetUp(ti *ogletest.TestInfo) { @@ -66,7 +66,7 @@ func (t *SampleTest) SetUp(ti *ogletest.TestInfo) { } } -// Like Initialize, but doens't panic. +// Like SetUp, but doens't panic. func (t *SampleTest) initialize( fs fuse.FileSystem, config *fuse.MountConfig) (err error) {