Index: lib/src/utils.dart |
diff --git a/lib/src/utils.dart b/lib/src/utils.dart |
index 877cfb2263bacbd10358da47ac2e77d74a963d99..ea1e92ea7d939bcd7be3812ad1e1fe8371fb9977 100644 |
--- a/lib/src/utils.dart |
+++ b/lib/src/utils.dart |
@@ -8,7 +8,7 @@ import 'package:stack_trace/stack_trace.dart'; |
/// Indent each line in [str] by two spaces. |
String indent(String str) => |
- str.replaceAll(new RegExp("^", multiLine: true), " "); |
+ str.replaceAll(new RegExp("^", multiLine: true), " "); |
/// A pair of values. |
class Pair<E, F> { |