Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions basepath_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ func TestRealPath(t *testing.T) {
t.Errorf("Got error %s", err)
}

excpected := filepath.Join(baseDir, anotherDir)
expected := filepath.Join(baseDir, anotherDir)

if surrealPath != excpected {
t.Errorf("Expected \n%s got \n%s", excpected, surrealPath)
if surrealPath != expected {
t.Errorf("Expected \n%s got \n%s", expected, surrealPath)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion lstater.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (

// Lstater is an optional interface in Afero. It is only implemented by the
// filesystems saying so.
// It will call Lstat if the filesystem iself is, or it delegates to, the os filesystem.
// It will call Lstat if the filesystem itself is, or it delegates to, the os filesystem.
// Else it will call Stat.
// In addition to the FileInfo, it will return a boolean telling whether Lstat was called or not.
type Lstater interface {
Expand Down