Skip to content

Commit e3c77ae

Browse files
condition: fix whitespace
1 parent aacafb2 commit e3c77ae

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/active/clojure/condition.cljc

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -515,19 +515,19 @@
515515
[con]
516516
;; adapted from Scheme 48
517517
(let [type (cond
518-
(error? con) :error
519-
(assertion-violation? con) :assertion-violation
520-
(violation? con) :violation
521-
(serious-condition? con) :serious
522-
:else 'unknown)
518+
(error? con) :error
519+
(assertion-violation? con) :assertion-violation
520+
(violation? con) :violation
521+
(serious-condition? con) :serious
522+
:else 'unknown)
523523

524-
who (and (who-condition? con)
524+
who (and (who-condition? con)
525525
(condition-who con))
526526

527-
message (and (message-condition? con)
527+
message (and (message-condition? con)
528528
(condition-message con))
529529

530-
stuff (if (irritants-condition? con)
530+
stuff (if (irritants-condition? con)
531531
(condition-irritants con)
532532
[])
533533

@@ -539,7 +539,7 @@
539539
(delete-first
540540
(partial condition-component-of-condition-type? &message)
541541
(delete-first
542-
(partial condition-component-of-condition-type? &who)
542+
(partial condition-component-of-condition-type? &who)
543543
(delete-first
544544
(partial condition-component-of-condition-type? &irritants)
545545
(condition-components con)))))]

0 commit comments

Comments
 (0)