diff --git a/docs/charts.md b/docs/charts.md
index baa77923823cc95d913ced702af5374636ace221..17a779fc1e683f71dcce956e7aca00f8455d3d9b 100644
--- a/docs/charts.md
+++ b/docs/charts.md
@@ -44,6 +44,13 @@ If you are familiar with the Chart.yaml file format for Helm Classic, you will
 notice that fields specifying dependencies have been removed. That is because
 the new Chart format expresses dependencies using the `charts/` directory.
 
+### Charts and Versioning
+
+Every chart must have a version number. A version must follow the
+[SemVer 2](http://semver.org/) standard. Unlike Helm Classic, Kubernetes
+Helm uses version numbers as release markers. Packages in repositories
+are identified by name plus version.
+
 ## Chart Dependencies
 
 In Helm, one chart may depend on any number of other charts. These
@@ -71,10 +78,14 @@ The example above shows how the Wordpress chart expresses its dependency
 on Apache and MySQL by including those charts inside of its `charts/`
 directory.
 
+**TIP:** _To drop a dependency into your `charts/` directory, use the
+`helm fetch` command._
+
 ## Templates and Values
 
-In Helm Charts, templates are written in the Go template language, with the 
-addition of 50 or so add-on template functions.
+In Helm Charts, templates are written in the Go template language, with the
+addition of 50 or so [add-on template
+functions](https://github.com/Masterminds/sprig).
 
 All template files are stored in a chart's `templates/` folder. When
 Helm renders the charts, it will pass every file in that directory
diff --git a/docs/developers.md b/docs/developers.md
index ddea7e9effec1e71059a00f090ced9c5bb540011..0d252c3569faf6da35c81199f1d03c0bdda86020 100644
--- a/docs/developers.md
+++ b/docs/developers.md
@@ -33,7 +33,7 @@ To run Helm and Tiller locally, you can run `bin/helm` or `bin/tiller`.
 
 ## gRPC and Protobuf
 
-Tiller uses gRPC. To get started with gRPC, you will need to...
+Helm and Tiller communicate using gRPC. To get started with gRPC, you will need to...
 
 - Install `protoc` for compiling protobuf files. Releases are
   [here](https://github.com/google/protobuf/releases)
@@ -67,6 +67,10 @@ remains consistent, and (c) contributions follow the open source legal
 requirements. Our intent is not to burden contributors, but to build
 elegant and high-quality open source code so that our users will benefit.
 
+Make sure you have read and understood the main CONTRIBUTING guide:
+
+https://github.com/kubernetes/helm/blob/master/CONTRIBUTING.md
+
 We follow the coding standards and guidelines outlined by the Deis
 project:
 
diff --git a/docs/quickstart.md b/docs/quickstart.md
index 04b431f5b5ef822ee5aaf108265d38a5be006b1f..86a865ecca7024b34cf80291fd9721dcf7758c91 100644
--- a/docs/quickstart.md
+++ b/docs/quickstart.md
@@ -29,10 +29,10 @@ $ helm init
 
 To install an existing chart, you can run the `helm install` command:
 
-_TODO:_ Update this to the correct URL.
+_TODO:_ Might need instructions about repos.
 
 ```console
-$ helm install https://helm.sh/charts/nginx-0.1.0.tgz
+$ helm install nginx-1.0.0
 Released smiling-penguin
 ```