summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-bin-debugger
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
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')
-rw-r--r--mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c2
-rw-r--r--mrbgems/mruby-bin-debugger/tools/mrdb/cmdrun.c4
2 files changed, 3 insertions, 3 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;
}
diff --git a/mrbgems/mruby-bin-debugger/tools/mrdb/cmdrun.c b/mrbgems/mruby-bin-debugger/tools/mrdb/cmdrun.c
index 233c86cef..fe8cf0aa7 100644
--- a/mrbgems/mruby-bin-debugger/tools/mrdb/cmdrun.c
+++ b/mrbgems/mruby-bin-debugger/tools/mrdb/cmdrun.c
@@ -18,9 +18,9 @@ dbgcmd_run(mrb_state *mrb, mrdb_state *mrdb)
dbg->xm = DBG_QUIT;
if (dbg->xphase == DBG_PHASE_RUNNING){
struct RClass *exc;
- puts("Start it from the beginning.");
+ puts("Start it from the beginning");
exc = mrb_define_class(mrb, "DebuggerRestart", mrb->eException_class);
- mrb_raise(mrb, exc, "Restart mrdb.");
+ mrb_raise(mrb, exc, "Restart mrdb");
}
}