aboutsummaryrefslogtreecommitdiff
path: root/src/Formats
diff options
context:
space:
mode:
Diffstat (limited to 'src/Formats')
-rw-r--r--src/Formats/StructuredFormatService.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Formats/StructuredFormatService.kt b/src/Formats/StructuredFormatService.kt
index 6ec75379..ec4cff89 100644
--- a/src/Formats/StructuredFormatService.kt
+++ b/src/Formats/StructuredFormatService.kt
@@ -69,7 +69,7 @@ public abstract class StructuredFormatService(val locationService: LocationServi
is ContentBlockCode -> {
appendBlockCode(this, formatText(location, content.children))
}
- else -> append(formatText(location, content.children))
+ is ContentBlock -> append(formatText(location, content.children))
}
}.toString()
}