Skip to content

Commit 6d89fc0

Browse files
committed
minor comments #2
1 parent df5898e commit 6d89fc0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,18 +63,18 @@ debug(nmfconsensus) # use the debugger for the "nmfconsensus" function
6363
runNMF() # run the code again
6464
```
6565

66-
It will show the chunk of code that is about to be executed. Within the debugger,
67-
you can type in the following commands:
66+
The debugger will show the chunk of code that is about to be executed. Within the
67+
debugger, you can type in the following commands:
6868

6969
* **<Enter> or n:** execute the next single statement
7070
* **c:** execute the next block
7171
* **Q:** quit the debugger
7272

7373
Use the `Enter` key to step through the statements and hit `c` if you get stuck
74-
in a long loop. During debugging, you can inspect variables and modify them as if
75-
you were in a standard R session.
74+
in a long loop (twice for nested loops). During debugging, you can inspect variables
75+
and modify them as if you were in a standard R session.
7676

77-
If you no longer want to use the debugger you can quit it and then either call
77+
If you no longer want to use the debugger you can quit it with `Q` and then either call
7878
`undebug()` on your function or just `source()` your script file again.
7979

8080
**Correcting errors is fine, but why should I optimize my code when it works?**

0 commit comments

Comments
 (0)