@@ -52,7 +52,7 @@ To invoke the mruby debugger, just type `mrdb`.
5252To specify the script file:
5353
5454``` bash
55- $ mrdb [option] file name
55+ $ mrdb [option] filename
5656```
5757
5858For example: Debugging sample.rb
@@ -121,7 +121,7 @@ Be aware that the breakpoint command will not check the validity of the class na
121121
122122You can get the current breakpoint information by the following options.
123123
124- breakpoint breakpoint number : file name . line number
124+ breakpoint breakpoint number : filename . line number
125125
126126breakpoint breakpoint number : [ class name,] method name
127127
@@ -267,7 +267,7 @@ Example:
267267```
268268(sample.rb:1) info breakpoints
269269Num Type Enb What
270- 1 breakpoint y at sample.rb:3 -> file name ,line number
270+ 1 breakpoint y at sample.rb:3 -> filename ,line number
2712712 breakpoint n in Sample_class:sample_class_method -> [class:]method name
2722723 breakpoint y in sample_global_method
273273```
@@ -301,11 +301,11 @@ When you do not specify both the `first` and `last` options, you will receive th
301301Example:
302302
303303```
304- Specifying file name and first row number
304+ Specifying filename and first row number
305305sample.rb:1) list sample2.rb:5
306306```
307307
308- Specifying the file name and the first and last row number:
308+ Specifying the filename and the first and last row number:
309309
310310```
311311(sample.rb:1) list sample2.rb:6,7
0 commit comments