Skip to content

Commit

Permalink
Merge pull request #39 from OGreeni/typo-fix
Browse files Browse the repository at this point in the history
Fix typo in error message
  • Loading branch information
gzuidhof authored Oct 4, 2023
2 parents 09625a8 + 147384b commit f0e07f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func ReadFromFilepath(cfgFilepath string) tygo.Config {
conf := tygo.Config{}
err = yaml.Unmarshal(b, &conf)
if err != nil {
log.Fatalf("Could not parse config file froms: %v", err)
log.Fatalf("Could not parse config file from: %v", err)
}

// apply defaults
Expand Down

0 comments on commit f0e07f9

Please sign in to comment.