Skip to content

Commit

Permalink
added data source support
Browse files Browse the repository at this point in the history
  • Loading branch information
dprzybyl committed Oct 21, 2023
1 parent 7a23614 commit c54e85d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ data class ApmString(val value: String) : ApmType() {
}

override fun prettyPrint(depth: Int, prefixDepth: Int): String {
return "\t".repeat(min(depth, prefixDepth)) + "'$value'"
return "\t".repeat(min(depth, prefixDepth)) + "\"$value\""
}
}

Expand Down

0 comments on commit c54e85d

Please sign in to comment.