summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Flint <[email protected]>2015-10-31 19:14:11 -0700
committerAlex Flint <[email protected]>2015-10-31 19:14:11 -0700
commit19d956870f660ed4ca00069e763c2806dade3772 (patch)
tree60c4634ff2f493c0c7797cf50ef0b9e1658f63a2
parent6dc9bbbdfde8bed4cbbd25fd664ff6362b9acce0 (diff)
udpate readme
-rw-r--r--README.md10
1 files changed, 4 insertions, 6 deletions
diff --git a/README.md b/README.md
index 9c1c20b..b08300a 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,9 @@
## Structured argument parsing for Go
+```shell
+go get github.com/alexflint/go-arg
+```
+
```go
var args struct {
Foo string
@@ -14,12 +18,6 @@ $ ./example --foo=hello --bar
hello true
```
-### Installation
-
-```shell
-go get github.com/alexflint/go-arg
-```
-
### Default values
```go