From d6304f9b0acd3894fd08fccee75ab47d10f9a64a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Tue, 30 Jun 2020 01:45:33 +0200 Subject: Rename attributes => properties, properties => parameters. --- module/vcomponent/describe.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'module/vcomponent/describe.scm') 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))) -- cgit v1.2.3