summaryrefslogtreecommitdiff
path: root/module/system/repl/command.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/system/repl/command.scm')
-rw-r--r--module/system/repl/command.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/module/system/repl/command.scm b/module/system/repl/command.scm
index 8f72430c8..631957a83 100644
--- a/module/system/repl/command.scm
+++ b/module/system/repl/command.scm
@@ -497,7 +497,8 @@ Disassemble a compiled procedure."
((bytevector? obj)
(disassemble-image (load-image obj)))
(else
- (format #t "Argument to ,disassemble not a procedure or objcode: ~a~%"
+ (format #t
+ "Argument to ,disassemble not a procedure or a bytevector: ~a~%"
obj)))))
(define-meta-command (disassemble-file repl file)