diff --git a/README.md b/README.md index 9712e70..5e0d2b9 100644 --- a/README.md +++ b/README.md @@ -127,7 +127,7 @@ You can handle the specific case where no config file is found like this: ```go if err := viper.ReadInConfig(); err != nil { - if _, ok := err.(viper.ConfigFileNotFoundError); ok { + if errors.Is(err, os.ErrNotExist) { // Config file not found; ignore error if desired } else { // Config file was found but another error was produced