Update README.md
diff --git a/README.md b/README.md
index 993b22d..59fd303 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,11 @@
# gvt, the go vendoring tool
-`gvt` is a simple Go vendoring tool made for the GO15VENDOREXPERIMENT. It's based entirely on [gb-vendor](https://github.com/constabulary/gb).
+`gvt` is a simple Go vendoring tool made for the GO15VENDOREXPERIMENT.
+It's based entirely on [gb-vendor](https://github.com/constabulary/gb).
-You run `gvt fetch` when you would run `go get`. gvt downloads dependencies to `./vendor/`. With `GO15VENDOREXPERIMENT=1` set the compiler will find and use those packages without need to do import path rewriting. `gvt` works recursively as you would expect, and lets you update vendored dependencies. It also writes a manifest to `./vendor/manifest`.
+You run `gvt fetch` when you would run `go get`. `gvt` downloads packages to `./vendor/...`. With `GO15VENDOREXPERIMENT=1` set the compiler will find and use those dependencies without import path rewriting. `gvt` works recursively as you would expect, and lets you update vendored dependencies. It also writes a manifest to `./vendor/manifest`.
-Packages whose dependencies are vendored with gvt are `go build`-able and `go get`-able by Go 1.5 with `GO15VENDOREXPERIMENT=1` set.
+Packages whose dependencies are vendored with `gvt` are `go build`-able and `go get`-able by Go 1.5 with `GO15VENDOREXPERIMENT=1` set.
## Installation
@@ -56,8 +57,8 @@
There are many Go vendoring tools, but they all have some subset of the following problems
- * no GO15VENDOREXPERIMENT support: old tools are based on import path rewriting or GOPATH overrides
- * requirement to run on clients: some require the user to install the tool and run it after cloning, which breaks `go get`
- * **no real fetching support**: tools like Godep just copy source from your GOPATH, instead of pulling it from the Internet
- * prominent metadata files: there's no need for the manifest to be in your repository root, or in its own empty folder
- * entire different build stack: gb-vendor is awesome but it requires you to build your project with gb
+ * no GO15VENDOREXPERIMENT support: old tools are based on import path rewriting or GOPATH overrides
+ * requirement to run on clients: some require the user to install the tool and run it after cloning, which breaks `go get`
+ * **no real fetching support**: tools like Godep just copy packages from your GOPATH, instead of pulling it from the Internet
+ * prominent metadata files: there's no need for the manifest to be in your repository root, or in its own empty folder
+ * entire different build stack: gb-vendor is awesome but it requires you to build your project with gb