You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following produces columns with different font sizes.
It would be nice to be able to use the same font size.
So far I add trailing whitespace to make the longest lines have the same length.
<CodeSurferColumns>
<Step>
```kotlin
val helloWorld = "Hello world"
val world = "world"
@Benchmark
fun junit4() {
Assert.assertTrue(
"$helloWorld should contain $world",
helloWorld.contains(world)
)
}
```
```kotlin
val helloWorld = "Hello world"
val world = "world"
@Benchmark
fun junit5() {
Assertions.assertTrue(helloWorld.contains(world)) {
"$helloWorld should contain $world"
}
}
```
</Step>
</CodeSurferColumns>
The text was updated successfully, but these errors were encountered:
The following produces columns with different font sizes.
It would be nice to be able to use the same font size.
So far I add trailing whitespace to make the longest lines have the same length.
The text was updated successfully, but these errors were encountered: