It might be just that the comment is missing a terminating newline. Before: ```dart enum EE { a, b, // 'b' c } ``` After `dart format`: ```dart enum EE { a, b, // 'b' c } ```