diff options
author | David Thompson <dthompson@vistahigherlearning.com> | 2019-06-12 09:48:55 -0400 |
---|---|---|
committer | David Thompson <dthompson@vistahigherlearning.com> | 2019-06-12 09:48:55 -0400 |
commit | 810a4a0538eb9e97be2254cf3b6573bc1cb306ba (patch) | |
tree | 9cf9f01687cfa685b5cfe560603587db177e1b74 | |
parent | 4552c880a6fd30f5bd87ce101491e0e966c42d77 (diff) |
node: Add setter for rank.
-rw-r--r-- | starling/node.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/starling/node.scm b/starling/node.scm index 578271e..73125da 100644 --- a/starling/node.scm +++ b/starling/node.scm @@ -55,7 +55,7 @@ (name #:accessor name #:init-form (gensym "anonymous-") #:init-keyword #:name) ;; An integer value that determines priority order for ;; updating/rendering. - (rank #:getter rank #:init-value 0 #:init-keyword #:rank) + (rank #:accessor rank #:init-value 0 #:init-keyword #:rank) ;; The node that this node is attached to. A node may only have one ;; parent. (parent #:accessor parent #:init-form #f) |