mirror of
https://github.com/restic/restic.git
synced 2025-10-09 13:49:58 +00:00
Fix typos
This commit is contained in:

committed by
Michael Eischer

parent
a72b418319
commit
ac00229386
@@ -29,7 +29,7 @@ func TempFile(dir, prefix string) (f *os.File, err error) {
|
||||
return f, nil
|
||||
}
|
||||
|
||||
// isNotSuported returns true if the error is caused by an unsupported file system feature.
|
||||
// isNotSupported returns true if the error is caused by an unsupported file system feature.
|
||||
func isNotSupported(err error) bool {
|
||||
if perr, ok := err.(*os.PathError); ok && perr.Err == syscall.ENOTSUP {
|
||||
return true
|
||||
|
@@ -72,7 +72,7 @@ type LocalVss struct {
|
||||
var _ FS = &LocalVss{}
|
||||
|
||||
// parseMountPoints try to convert semicolon separated list of mount points
|
||||
// to map of lowercased volume GUID pathes. Mountpoints already in volume
|
||||
// to map of lowercased volume GUID paths. Mountpoints already in volume
|
||||
// GUID path format will be validated and normalized.
|
||||
func parseMountPoints(list string, msgError ErrorHandler) (volumes map[string]struct{}) {
|
||||
if list == "" {
|
||||
|
Reference in New Issue
Block a user