Skip to content

Commit

Permalink
s/writeable/writable/g
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesdaniels committed Jan 18, 2021
1 parent 35ed6d4 commit bafe9c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/repository/file.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ func (r *FileRepository) CanWrite(u fyne.URI) (bool, error) {

if os.IsNotExist(err) {
// We may need to do extra logic to check if the
// directory is writeable, but presumably the
// directory is writable, but presumably the
// IsPermission check covers this.
return true, nil
}
Expand Down
2 changes: 1 addition & 1 deletion storage/repository/generic.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ func GenericCopy(source fyne.URI, destination fyne.URI) error {
return err
}

// The destination must be writeable.
// The destination must be writable.
destwrepo, ok := dstrepo.(WritableRepository)
if !ok {
return ErrOperationNotSupported
Expand Down

0 comments on commit bafe9c8

Please sign in to comment.