Skip to content

Commit

Permalink
Fix 1 occurrence of inverted-when
Browse files Browse the repository at this point in the history
This negated `when` expression can be replaced by an `unless` expression.
  • Loading branch information
resyntax-ci[bot] committed Jan 5, 2025
1 parent 76a0a56 commit 03ac30c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drracket/gui-debugger/debug-tool.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@
(send (get-tab)
print-to-console
(string-append "return val = " rendered-value)))))
(when (not (eq? stat 'break))
(unless (eq? stat 'break)
(make-object
menu-item%
(if (cons? stat) "Change return value..." "Skip expression...")
Expand Down

0 comments on commit 03ac30c

Please sign in to comment.