Skip to content

Commit

Permalink
minor comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mschubert committed Jan 9, 2014
1 parent 2920ee5 commit df5898e
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,9 @@ runNMF()
```

Enter your name (or any name that you recognize) so you can see how your runtime
compares to other approaches later.

You will realize that it throws an error. Try to spot and correct it. You can get
get a quick overview of the context with `traceback()`.
compares to other approaches later. You will realize that the script throws an
error. Try to spot and correct it. You can get get a quick overview of the context
with `traceback()`.

**Using the debugger**

Expand All @@ -60,8 +59,8 @@ case, you will want to call

```splus
options(error=recover) # if there is an error, don't just quit
debug(nmfconsensus) # use the debugger for this function
runNMF()
debug(nmfconsensus) # use the debugger for the "nmfconsensus" function
runNMF() # run the code again
```

It will show the chunk of code that is about to be executed. Within the debugger,
Expand Down

0 comments on commit df5898e

Please sign in to comment.