Skip to content

Commit d3c9301

Browse files
committed
Fix comments missing spaces
1 parent 2a4eaeb commit d3c9301

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/src/builder.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,10 @@ class ArtemisCustomTypeBuilder implements Builder {
103103
'List<$dartType?> fromGraphQLList${graphQlType}NullableToDartList${dartType}Nullable(List<Object?> v) => v.map((e) => fromGraphQL${graphQlType}NullableToDart${dartType}Nullable(e as String?)).toList();\n'
104104
'List<String?> fromDartList${dartType}NullableToGraphQLList${graphQlType}Nullable(List<$dartType?> v) => v.map((e) => fromDart${dartType}NullableToGraphQL${graphQlType}Nullable(e)).toList();\n'
105105
'List<$dartType?>? fromGraphQLListNullable${graphQlType}NullableToDartListNullable${dartType}Nullable(List<Object?>? v) => v?.map((e) => fromGraphQL${graphQlType}NullableToDart${dartType}Nullable(e as String?)).toList();\n'
106-
'List<String?>? fromDartListNullable${dartType}NullableToGraphQLListNullable${graphQlType}Nullable(List<$dartType?>? v) => v?.map((e) => fromDart${dartType}NullableToGraphQL${graphQlType}Nullable(e)).toList();\n\n',
106+
'List<String?>? fromDartListNullable${dartType}NullableToGraphQLListNullable${graphQlType}Nullable(List<$dartType?>? v) => v?.map((e) => fromDart${dartType}NullableToGraphQL${graphQlType}Nullable(e)).toList();\n',
107107
);
108108

109-
buffer.write(
109+
buffer.writeln(
110110
DartFormatter(fixes: [StyleFix.singleCascadeStatements]).format(
111111
code.toString(),
112112
),

0 commit comments

Comments
 (0)