aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/pages
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/main/kotlin/pages')
-rw-r--r--core/src/main/kotlin/pages/PageContentBuilder.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/kotlin/pages/PageContentBuilder.kt b/core/src/main/kotlin/pages/PageContentBuilder.kt
index cc53586e..25ddc2f1 100644
--- a/core/src/main/kotlin/pages/PageContentBuilder.kt
+++ b/core/src/main/kotlin/pages/PageContentBuilder.kt
@@ -168,7 +168,7 @@ private fun PageContentBuilder.type(t: TypeWrapper) {
link(t.constructorNamePathSegments.last(), t.dri!!)
else (this as? DefaultPageContentBuilder)?.let {
logger.error("type $t cannot be resolved")
- text("???")
+ text(t.toString())
}
list(t.arguments, prefix = "<", suffix = ">") {
type(it)