diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-02-28 19:32:52 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-02-28 19:32:52 +0900 |
| commit | 8684abd697bddb63aed18ef3a2083b3484cadd9b (patch) | |
| tree | ca1e958f2db3e6b2446a5c0bcbcb166fa2ebd8a0 /mrbgems/mruby-bin-debugger/tools/mrdb/cmdrun.c | |
| parent | b61766473bfd796ae6f8e4bcc7758065e9777732 (diff) | |
| download | mruby-8684abd697bddb63aed18ef3a2083b3484cadd9b.tar.gz mruby-8684abd697bddb63aed18ef3a2083b3484cadd9b.zip | |
Remove periods from error messages according to the convention.
Diffstat (limited to 'mrbgems/mruby-bin-debugger/tools/mrdb/cmdrun.c')
| -rw-r--r-- | mrbgems/mruby-bin-debugger/tools/mrdb/cmdrun.c | 4 |
1 files changed, 2 insertions, 2 deletions
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"); } } |
