Fix copy-paste error in documentation

Fixes #825
This commit is contained in:
Mark Sagi-Kazar 2020-01-16 19:54:31 +01:00
parent df9f4af211
commit f2cbaea4c2
No known key found for this signature in database
GPG key ID: 34CC109EB5ED1C2A

View file

@ -996,11 +996,6 @@ func (v *Viper) BindFlagValues(flags FlagValueSet) (err error) {
}
// BindFlagValue binds a specific key to a FlagValue.
// Example (where serverCmd is a Cobra instance):
//
// serverCmd.Flags().Int("port", 1138, "Port to run Application server on")
// Viper.BindFlagValue("port", serverCmd.Flags().Lookup("port"))
//
func BindFlagValue(key string, flag FlagValue) error { return v.BindFlagValue(key, flag) }
func (v *Viper) BindFlagValue(key string, flag FlagValue) error {
if flag == nil {