Merge pull request #1248 from mungomat/fuse_typo

fuse: typo
This commit is contained in:
Alexander Neumann 2017-09-17 20:57:42 +02:00
commit 6342a08a16
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ import (
"golang.org/x/net/context"
)
// Statically ensure that *file implements the given interface
// Statically ensure that *link implements the given interface
var _ = fs.NodeReadlinker(&link{})
type link struct {

View File

@ -25,7 +25,7 @@ type SnapshotsDir struct {
names map[string]*restic.Snapshot
}
// ensure that *DirSnapshots implements these interfaces
// ensure that *SnapshotsDir implements these interfaces
var _ = fs.HandleReadDirAller(&SnapshotsDir{})
var _ = fs.NodeStringLookuper(&SnapshotsDir{})