Skip to content

Commit c03b6ee

Browse files
author
snappdevelopment
committed
add tab character in XMLCreator
1 parent 9026f88 commit c03b6ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commonMain/kotlin/com/snad/stringsToXml/XMLCreator.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class XMLCreator {
99
var xmlString = ""
1010

1111
for(translation in translations) {
12-
xmlString = xmlString.plus(" <string name=\"${translation.id}\">${translation.translatedString}</string>\n")
12+
xmlString = xmlString.plus("\t<string name=\"${translation.id}\">${translation.translatedString}</string>\n")
1313
}
1414

1515
return header.plus(xmlString).plus(footer)

0 commit comments

Comments
 (0)