about summary refs log tree commit diff stats
path: root/edit
diff options
context:
space:
mode:
Diffstat (limited to 'edit')
-rw-r--r--edit/005-sandbox.mu2
-rw-r--r--edit/009-sandbox-test.mu2
-rw-r--r--edit/011-errors.mu2
3 files changed, 3 insertions, 3 deletions
diff --git a/edit/005-sandbox.mu b/edit/005-sandbox.mu
index 4ef76e01..ae322545 100644
--- a/edit/005-sandbox.mu
+++ b/edit/005-sandbox.mu
@@ -273,7 +273,7 @@ def render-sandboxes screen:&:screen, sandbox:&:sandbox, left:num, right:num, ro
   return-unless sandbox
   screen-height:num <- screen-height screen
   at-bottom?:bool <- greater-or-equal row, screen-height
-  return-if at-bottom?:bool
+  return-if at-bottom?
   hidden?:bool <- lesser-than idx, render-from
   {
     break-if hidden?
diff --git a/edit/009-sandbox-test.mu b/edit/009-sandbox-test.mu
index f0ec9cc9..1d1ed172 100644
--- a/edit/009-sandbox-test.mu
+++ b/edit/009-sandbox-test.mu
@@ -189,7 +189,7 @@ after <render-sandbox-response> [
     break-unless expected-response  # fall-through to print in grey
     response-is-expected?:bool <- equal expected-response, sandbox-response
     {
-      break-if response-is-expected?:bool
+      break-if response-is-expected?
       row, screen <- render-text screen, sandbox-response, left, right, 1/red, row
     }
     {
diff --git a/edit/011-errors.mu b/edit/011-errors.mu
index cf12f1c1..049a0853 100644
--- a/edit/011-errors.mu
+++ b/edit/011-errors.mu
@@ -87,7 +87,7 @@ def! update-sandbox sandbox:&:sandbox, env:&:environment, idx:num -> sandbox:&:s
   *sandbox <- put *sandbox, trace:offset, trace
   {
     break-if errors
-    break-if completed?:bool
+    break-if completed?
     errors <- new [took too long!
 ]
     *sandbox <- put *sandbox, errors:offset, errors