vendor/github.com/spf13/pflag/README.md
changeset 251 1c52a0eeb952
parent 242 2a9ec03fe5a1
--- a/vendor/github.com/spf13/pflag/README.md	Wed Sep 18 19:17:42 2019 +0200
+++ b/vendor/github.com/spf13/pflag/README.md	Sun Feb 16 18:54:01 2020 +0100
@@ -86,8 +86,8 @@
 fmt.Println("flagvar has value ", flagvar)
 ```
 
-There are helpers function to get values later if you have the FlagSet but
-it was difficult to keep up with all of the flag pointers in your code.
+There are helper functions available to get the value stored in a Flag if you have a FlagSet but find
+it difficult to keep up with all of the pointers in your code.
 If you have a pflag.FlagSet with a flag called 'flagname' of type int you
 can use GetInt() to get the int value. But notice that 'flagname' must exist
 and it must be an int. GetString("flagname") will fail.