Skip to content

Commit 07df517

Browse files
ozydingoko1
authored andcommitted
Modify misc/README.md.erb and regenerate README
1 parent 1405bf8 commit 07df517

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: misc/README.md.erb

+4-4
Original file line numberDiff line numberDiff line change
@@ -244,16 +244,16 @@ It will help if you want to know what the program is doing.
244244

245245
If you want to run a command written in Ruby like `rake`, `rails`, `bundle`, `rspec`, and so on, you can use `rdbg -c` option.
246246

247-
* Without `-c` option, `rdbg <name>` means that `<name>` is Ruby script and invoke it like `ruby <name>` with the debugger.
248-
* With `-c` option, `rdbg -c <name>` means that `<name>` is a command in `PATH` and simply invokes it with the debugger.
247+
* Without the `-c` option, `rdbg <name>` means that `<name>` is a Ruby script and invokes it like `ruby <name>` with the debugger.
248+
* With the `-c` option, `rdbg -c <name>` means that `<name>` is a command in `PATH` and simply invokes it with the debugger.
249249

250250
Examples:
251251
* `rdbg -c -- rails server`
252252
* `rdbg -c -- bundle exec ruby foo.rb`
253253
* `rdbg -c -- bundle exec rake test`
254-
* `rdbg -c -- ruby target.rb` is same as `rdbg target.rb`
254+
* `rdbg -c -- ruby target.rb` is the same as `rdbg target.rb`
255255

256-
NOTE: `--` is needed to separate the command line options for `rdbg` and invoking command. For example, `rdbg -c rake -T` is recognized like `rdbg -c -T -- rake`. It should be `rdbg -c -- rake -T`.
256+
NOTE: `--` is needed to separate the command line options for `rdbg` and the invoking command. For example, `rdbg -c rake -T` is recognized like `rdbg -c -T -- rake`. It should be `rdbg -c -- rake -T`.
257257

258258
NOTE: If you want to use bundler (`bundle` command), you need to write `gem debug` line in your `Gemfile`.
259259

0 commit comments

Comments
 (0)