Merge branch 'srawlins.fix-39'
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9de260c..8f9c01a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 0.13.3+2
+
+* Documentation fixes.
+
 ## 0.13.3+1
 
 * Print all lines of multi-line command descriptions.
diff --git a/README.md b/README.md
index 96df5e6..764e008 100644
--- a/README.md
+++ b/README.md
@@ -294,9 +294,9 @@
 
   // [run] may also return a Future.
   void run() {
-    // [options] is set before [run()] is called and contains the options
+    // [argResults] is set before [run()] is called and contains the options
     // passed to this command.
-    print(options['all']);
+    print(argResults['all']);
   }
 }
 ```
diff --git a/pubspec.yaml b/pubspec.yaml
index 702f008..c51fad7 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: args
-version: 0.13.3+1
+version: 0.13.3+2
 author: "Dart Team <misc@dartlang.org>"
 homepage: https://github.com/dart-lang/args
 description: >