summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2021-02-28 19:32:52 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2021-02-28 19:32:52 +0900
commit8684abd697bddb63aed18ef3a2083b3484cadd9b (patch)
treeca1e958f2db3e6b2446a5c0bcbcb166fa2ebd8a0 /mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c
parentb61766473bfd796ae6f8e4bcc7758065e9777732 (diff)
downloadmruby-8684abd697bddb63aed18ef3a2083b3484cadd9b.tar.gz
mruby-8684abd697bddb63aed18ef3a2083b3484cadd9b.zip
Remove periods from error messages according to the convention.
Diffstat (limited to 'mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c')
-rw-r--r--mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c b/mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c
index db28e4229..a05ff9415 100644
--- a/mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c
+++ b/mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c
@@ -502,7 +502,7 @@ dbgcmd_quit(mrb_state *mrb, mrdb_state *mrdb)
if (mrdb->dbg->xm == DBG_QUIT) {
struct RClass *exc;
exc = mrb_define_class(mrb, "DebuggerExit", mrb->eException_class);
- mrb_raise(mrb, exc, "Exit mrdb.");
+ mrb_raise(mrb, exc, "Exit mrdb");
}
return DBGST_PROMPT;
}