Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ javac -g binary_search/BinarySearchRecursive.java
# Make sure you include this `-g` switch!
```

Once compiled with debugging information included, you can use the Java debugger to inspect the values of all variables during program exeuction, run the code one line at a time, step by step, and more:
Once compiled with debugging information included, you can use the Java debugger to inspect the values of all variables during program execution, run the code one line at a time, step by step, and more:

```sh
jdb -classpath binary_search BinarySearchRecursive.java
Expand Down