Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
tbm committed Nov 27, 2023
1 parent c48f81b commit 39c8ef2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Available options for secrets backend are:
"secret-service" For gnome-keyring support
"keychain" For OS X keychain support
"kwallet" For KDE Secrets Manager support
"file" For encrypted file support - needs interaction to supply a symetric encryption key
"file" For encrypted file support - needs interaction to supply a symmetric encryption key
```

Most of the time `auto` is the proper one. The application will try to use the existing backends in the order [defined by the library](https://github.com/99designs/keyring/blob/2c916c935b9f0286ed72c22a3ccddb491c01c620/keyring.go#L28):
Expand Down
2 changes: 1 addition & 1 deletion internal/app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const (
DefaultConfigFilename = "config.hjson"
)

// App represents a running application with all the dependant services.
// App represents a running application with all the dependent services.
type App struct {
// FileTracker tracks local files already uploaded.
FileTracker FileTracker
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
func main() {
gphotosCmd := cli.NewCommand()
if err := gphotosCmd.Execute(); err != nil {
fmt.Fprintf(os.Stderr, "Error ocurred: %s", err)
fmt.Fprintf(os.Stderr, "Error occurred: %s", err)
os.Exit(int(feedback.ErrGeneric))
}
os.Exit(int(feedback.Success))
Expand Down

0 comments on commit 39c8ef2

Please sign in to comment.