Fix angle brackets in doc comments (#206)

diff --git a/lib/parser.dart b/lib/parser.dart
index 837007d..4469298 100644
--- a/lib/parser.dart
+++ b/lib/parser.dart
@@ -83,7 +83,7 @@
 
 /// Parse the [input] CSS stylesheet into a tree.
 ///
-/// The [input] can be a [String], or [List<int>] of bytes and returns a
+/// The [input] can be a [String], or [List]`<int>` of bytes and returns a
 /// [StyleSheet] AST. The optional [errors] list will collect any error
 /// encountered.
 StyleSheet parse(
@@ -100,7 +100,7 @@
 }
 
 /// Parse the [input] CSS selector into a tree. The [input] can be a [String],
-/// or [List<int>] of bytes and returns a [StyleSheet] AST.  The optional
+/// or [List]`<int>` of bytes and returns a [StyleSheet] AST.  The optional
 /// [errors] list will contain each error/warning as a [Message].
 // TODO(jmesserly): should rename "parseSelector" and return Selector
 StyleSheet selector(Object input, {List<Message>? errors}) {
@@ -1332,7 +1332,7 @@
 
   /// Same as [processSelector] but reports an error for each combinator.
   ///
-  /// This is a quick fix for parsing <compound-selectors> until the parser
+  /// This is a quick fix for parsing `<compound-selectors>` until the parser
   /// supports Selector Level 4 grammar:
   /// https://drafts.csswg.org/selectors-4/#typedef-compound-selector
   Selector? processCompoundSelector() {
diff --git a/test/compiler_test.dart b/test/compiler_test.dart
index f43c1ea..ba0c71e 100644
--- a/test/compiler_test.dart
+++ b/test/compiler_test.dart
@@ -505,7 +505,7 @@
   expect('foobar', simpleSelector1.name);
 }
 
-/// Test List<int> as input to parser.
+// Test List<int> as input to parser.
 void testArrayOfChars() {
   var errors = <Message>[];
   var input = '<![CDATA[.foo { '