Skip to content

Commit 16d6458

Browse files
fix: Corrects argument tabbing
1 parent f111fa8 commit 16d6458

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Sources/GraphQLGeneratorCore/Generator/SchemaGenerator.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -643,16 +643,16 @@ package struct SchemaGenerator {
643643
if let description = arg.description {
644644
output += """
645645
,
646-
description: \"\"\"
647-
\(description)
648-
\"\"\"
646+
description: \"\"\"
647+
\(description)
648+
\"\"\"
649649
"""
650650
}
651651

652652
if let defaultValue = arg.defaultValue {
653653
output += """
654654
,
655-
defaultValue: \(mapToSwiftCode(defaultValue))
655+
defaultValue: \(mapToSwiftCode(defaultValue))
656656
"""
657657
}
658658

0 commit comments

Comments
 (0)