Fix equalsIgnoringWhitespace examples.

Closes #3

R=kevmoo@google.com

Review URL: https://codereview.chromium.org//994703003
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f9bc5cb..c817eea 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 0.11.4+3
+
+* Fix the examples for `equalsIgnoringWhitespace`.
+
 ## 0.11.4+2
 
 * Improve the formatting of strings that contain unprintable ASCII characters.
diff --git a/lib/src/string_matchers.dart b/lib/src/string_matchers.dart
index c93963f..4643434 100644
--- a/lib/src/string_matchers.dart
+++ b/lib/src/string_matchers.dart
@@ -34,14 +34,14 @@
 ///
 /// For example, the following will all match successfully:
 ///
-///     expect("hello   world", equalsIgnoringCase("hello world"));
-///     expect("  hello world", equalsIgnoringCase("hello world"));
-///     expect("hello world  ", equalsIgnoringCase("hello world"));
+///     expect("hello   world", equalsIgnoringWhitespace("hello world"));
+///     expect("  hello world", equalsIgnoringWhitespace("hello world"));
+///     expect("hello world  ", equalsIgnoringWhitespace("hello world"));
 ///
 /// The following will not match:
 ///
-///     expect("helloworld", equalsIgnoringCase("hello world"));
-///     expect("he llo world", equalsIgnoringCase("hello world"));
+///     expect("helloworld", equalsIgnoringWhitespace("hello world"));
+///     expect("he llo world", equalsIgnoringWhitespace("hello world"));
 Matcher equalsIgnoringWhitespace(String value) =>
     new _IsEqualIgnoringWhitespace(value);
 
diff --git a/pubspec.yaml b/pubspec.yaml
index f96cb1c..3771a1f 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: matcher
-version: 0.11.4+2
+version: 0.11.4+3
 author: Dart Team <misc@dartlang.org>
 description: Support for specifying test expectations
 homepage: https://github.com/dart-lang/matcher