summaryrefslogtreecommitdiff
path: root/starling/node.scm
diff options
context:
space:
mode:
authorDavid Thompson <dthompson@vistahigherlearning.com>2019-06-12 09:48:55 -0400
committerDavid Thompson <dthompson@vistahigherlearning.com>2019-06-12 09:48:55 -0400
commit810a4a0538eb9e97be2254cf3b6573bc1cb306ba (patch)
tree9cf9f01687cfa685b5cfe560603587db177e1b74 /starling/node.scm
parent4552c880a6fd30f5bd87ce101491e0e966c42d77 (diff)
node: Add setter for rank.
Diffstat (limited to 'starling/node.scm')
-rw-r--r--starling/node.scm2
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)