Skip to content

Commit

Permalink
Generate string set in suggested attributes list as space-delimited s…
Browse files Browse the repository at this point in the history
…tring instead of Set<String>
  • Loading branch information
Sergey Mashkov committed May 29, 2015
1 parent d662e53 commit 46beaeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jvm/src/test/kotlin/streaming.kt
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ class TestStreaming {

fun <T> TagConsumer<T>.buildMe() = html { body { buildMe2() } }
fun FlowContent.buildMe2() =
div(setOf("block", "deprecated")) {
div("block deprecated") {
a(href = "http://kotlinlang.org") {
target = ATarget.blank
attributes["custom"] = "custom"
Expand Down

0 comments on commit 46beaeb

Please sign in to comment.