Fix typo in README (#227)
Fixed typo & superfluous white space in README
diff --git a/README.md b/README.md
index 4ebd8dd..cf17560 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@
* [Nanobox](https://github.com/nanobox-io/nanobox)/[Nanopack](https://github.com/nanopack)
* [Docker Notary](https://github.com/docker/Notary)
* [BloomApi](https://www.bloomapi.com/)
-* [doctl(https://github.com/digitalocean/doctl)
+* [doctl](https://github.com/digitalocean/doctl)
[](https://travis-ci.org/spf13/viper) [](https://gitter.im/spf13/viper?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
@@ -110,7 +110,7 @@
viper powered applications can read an update to a config file while running and
not miss a beat.
-Simply tell the viper instance to watchConfig.
+Simply tell the viper instance to watchConfig.
Optionally you can provide a function for Viper to run each time a change occurs.
**Make sure you add all of the configPaths prior to calling `WatchConfig()`**
@@ -298,7 +298,7 @@
func (f myFlagSet) VisitAll(fn func(FlagValue)) {
for _, flag := range flags {
- fn(flag)
+ fn(flag)
}
}
```