2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-28 14:40:49 +00:00

fuse: typo

This commit is contained in:
Tobias Klein 2017-09-17 17:34:19 +02:00
parent c784a15aaa
commit 9b38980ed9
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{})