Skip to content

Commit df5898e

Browse files
committed
minor comments
1 parent 2920ee5 commit df5898e

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,9 @@ runNMF()
4747
```
4848

4949
Enter your name (or any name that you recognize) so you can see how your runtime
50-
compares to other approaches later.
51-
52-
You will realize that it throws an error. Try to spot and correct it. You can get
53-
get a quick overview of the context with `traceback()`.
50+
compares to other approaches later. You will realize that the script throws an
51+
error. Try to spot and correct it. You can get get a quick overview of the context
52+
with `traceback()`.
5453

5554
**Using the debugger**
5655

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

6160
```splus
6261
options(error=recover) # if there is an error, don't just quit
63-
debug(nmfconsensus) # use the debugger for this function
64-
runNMF()
62+
debug(nmfconsensus) # use the debugger for the "nmfconsensus" function
63+
runNMF() # run the code again
6564
```
6665

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

0 commit comments

Comments
 (0)