Merge remote-tracking branch 'origin/master' into srawlins.fix-39
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']);
   }
 }
 ```