Fix analysis issues (dart-lang/stack_trace#160)

diff --git a/pkgs/stack_trace/lib/src/frame.dart b/pkgs/stack_trace/lib/src/frame.dart
index 88670a1..7cd9516 100644
--- a/pkgs/stack_trace/lib/src/frame.dart
+++ b/pkgs/stack_trace/lib/src/frame.dart
@@ -218,9 +218,12 @@
 
   /// Parses a Firefox 'eval' or 'function' stack frame.
   ///
-  /// for example:
+  /// For example:
+  ///
+  /// ```
   /// anonymous/<@https://example.com/stuff.js line 693 > Function:3:40
   /// anonymous/<@https://example.com/stuff.js line 693 > eval:3:40
+  /// ```
   factory Frame._parseFirefoxEval(String frame) =>
       _catchFormatException(frame, () {
         final match = _firefoxEvalLocation.firstMatch(frame);
diff --git a/pkgs/stack_trace/lib/src/trace.dart b/pkgs/stack_trace/lib/src/trace.dart
index 2e4427d..b8c62f5 100644
--- a/pkgs/stack_trace/lib/src/trace.dart
+++ b/pkgs/stack_trace/lib/src/trace.dart
@@ -31,9 +31,12 @@
 ///
 /// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/stack
 ///
-/// These stack traces looks like:
-///     anonymous/<@https://example.com/stuff.js line 693 > Function:3:40
-///     anonymous/<@https://example.com/stuff.js line 693 > eval:3:40
+/// These stack traces look like:
+///
+/// ````
+/// anonymous/<@https://example.com/stuff.js line 693 > Function:3:40
+/// anonymous/<@https://example.com/stuff.js line 693 > eval:3:40
+/// ````
 final _firefoxEvalTrace = RegExp(r'@\S+ line \d+ >.* (Function|eval):\d+:\d+');
 
 /// A RegExp to match Firefox and Safari's stack traces.