aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-03-08 08:22:01 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-03-08 08:22:01 -0700
commitb4d1157dbc53ecfacd4353b5252066c20c8ef683 (patch)
treeef610fa466d16d7dce7a4b6b6a20feb499043a35
parent631abac86eca14eedfa735d5473ad4041c7ec087 (diff)
downloadconsfigurator-b4d1157dbc53ecfacd4353b5252066c20c8ef683.tar.gz
fix copy/paste error
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
-rw-r--r--src/property.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/property.lisp b/src/property.lisp
index 0a16918..0820810 100644
--- a/src/property.lisp
+++ b/src/property.lisp
@@ -207,6 +207,6 @@ Called by property subroutines."
;;;; :APPLY subroutines
(define-condition failed-change (error)
- ((text :initarg :text :reader inapplicable-property-text))
+ ((text :initarg :text :reader failed-change-text))
(:report (lambda (condition stream)
- (format stream "~A" (inapplicable-property-text condition)))))
+ (format stream "~A" (failed-change-text condition)))))