From bbd5701617fc778f75b8ec6a6b63b6c33c70e4af Mon Sep 17 00:00:00 2001 From: John Bampton Date: Thu, 26 Oct 2023 16:15:57 +1000 Subject: [PATCH] Standardize Markdown table format --- doc/guides/debugger.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/doc/guides/debugger.md b/doc/guides/debugger.md index 40afb507b6..60be1cc8f6 100644 --- a/doc/guides/debugger.md +++ b/doc/guides/debugger.md @@ -61,20 +61,20 @@ $ mrdb sample.rb You can execute the shell commands listed below: -|command|description| -|:-:|:--| -|run|execute programs| -|step|execute stepping| -|continue|execute continuing program| -|break|configure the breaking point| -|delete|deleting the breaking points| -|disable|disabling the breaking points| -|enable|enabling the breaking points| -|info breakpoints|showing list of the breaking points| -|print|evaluating and printing the values of the mruby expressions in the script| -|list|displaying the source cords| -|help|showing help| -|quit|terminating the mruby debugger| +| command | description | +|:----------------:|:--------------------------------------------------------------------------| +| run | execute programs | +| step | execute stepping | +| continue | execute continuing program | +| break | configure the breaking point | +| delete | deleting the breaking points | +| disable | disabling the breaking points | +| enable | enabling the breaking points | +| info breakpoints | showing list of the breaking points | +| print | evaluating and printing the values of the mruby expressions in the script | +| list | displaying the source cords | +| help | showing help | +| quit | terminating the mruby debugger | ### 2.2.2 Debugging mruby Binary Files (mrb file) with mrdb