readme tweaks
diff --git a/README.md b/README.md
index e282392..5eb257b 100644
--- a/README.md
+++ b/README.md
@@ -1,14 +1,10 @@
 # cli_util
 
-Utilities to help in building Dart command-line apps.
+A utility to help in building Dart command-line apps.
 
-In particular, ``cli_util`` provides a simple, standardized way to get the current SDK directory.  Useful, especially, when building client applications that interact with the Dart SDK (such as the [analyzer](https://pub.dartlang.org/packages/analyzer)).
-
-## Install
-
-```shell
-pub global activate cli_util
-```
+In particular, ``cli_util`` provides a simple, standardized way to get the
+current SDK directory.  Useful, especially, when building client applications
+that interact with the Dart SDK (such as the [analyzer][analyzer]).
 
 ## Usage
 
@@ -19,10 +15,9 @@
 import 'package:path/path.dart' as path;
 
 main(args) {
-
   // Get sdk dir from cli_util
   Directory sdkDir = getSdkDir(args);
-  
+
   // Do stuff... For example, print version string
   File versionFile = new File(path.join(sdkDir.path, 'version'));
   print(versionFile.readAsStringSync());
@@ -33,4 +28,5 @@
 
 Please file feature requests and bugs at the [issue tracker][tracker].
 
+[analyzer]: https://pub.dartlang.org/packages/analyzer
 [tracker]: https://github.com/dart-lang/cli_util/issues