Format.
diff --git a/lib/src/source_visitor.dart b/lib/src/source_visitor.dart
index f5b4c61..a74e222 100644
--- a/lib/src/source_visitor.dart
+++ b/lib/src/source_visitor.dart
@@ -3772,7 +3772,7 @@
 
       var type = CommentType.block;
       if (text.startsWith('///') && !text.startsWith('////') ||
-      text.startsWith('/**')) {
+          text.startsWith('/**')) {
         type = CommentType.doc;
       } else if (comment.type == TokenType.SINGLE_LINE_COMMENT) {
         type = CommentType.line;
@@ -3780,8 +3780,8 @@
         type = CommentType.inlineBlock;
       }
 
-      var sourceComment = SourceComment(text, type, linesBefore,
-          flushLeft: flushLeft);
+      var sourceComment =
+          SourceComment(text, type, linesBefore, flushLeft: flushLeft);
 
       // If this comment contains either of the selection endpoints, mark them
       // in the comment.