Fix typos in comments.
diff --git a/lib/ascii.dart b/lib/ascii.dart
index 663bcba..4ac66ff 100644
--- a/lib/ascii.dart
+++ b/lib/ascii.dart
@@ -18,7 +18,7 @@
  * For less common symbols, a selection of common names are used.
  *
  * For parenthetical markers, there is both a short name, [$lparen]/[$rparen],
- * and a long name, $[open_paren]/ $[close_paren].
+ * and a long name, [$open_paren]/ [$close_paren].
  *
  * For common HTML entities, the entity names are also useable as symbolic
  * names: [$apos], [$quot], [$lt], [$gt], and [$amp].
@@ -190,7 +190,7 @@
 const int $langle            = 0x3C;
 /// Character '<'.
 const int $open_angle        = 0x3C;
-/// Character '    ='.
+/// Character '='.
 const int $equal             = 0x3D;
 /// Character '>'.
 const int $gt                = 0x3E;
diff --git a/pubspec.yaml b/pubspec.yaml
index d2e9bcd..f35e89d 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: charcode
-version: 1.0.0
+version: 1.0.1
 author: Dart Team <misc@dartlang.org>
 description: >
   Constants for ASCII and common non-ASCII character codes.