aboutsummaryrefslogtreecommitdiff
path: root/module/vcomponent/describe.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/vcomponent/describe.scm')
-rw-r--r--module/vcomponent/describe.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/vcomponent/describe.scm b/module/vcomponent/describe.scm
index 4e89f5e8..a16c67d0 100644
--- a/module/vcomponent/describe.scm
+++ b/module/vcomponent/describe.scm
@@ -9,7 +9,7 @@
(define maxlen (find-max (hash-map->list
(lambda (a _) (string-length (symbol->string a)))
- (attributes vcomponent))))
+ (properties vcomponent))))
(format #t "~aBEGIN ~a~%" ii (type vcomponent))
@@ -20,12 +20,12 @@
(trim-to-width
(format #f "~a" (value vline))
(- 80 indent maxlen)))
- (awhen (properties vline)
+ (awhen (parameters vline)
(display " ;")
(for (key value) in it
(format #t " ~a=~a" key value)))
(newline))
- (attributes vcomponent))
+ (properties vcomponent))
(for child in (children vcomponent)
(describe child (+ indent 2)))