Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e6fdae0

Browse files
committed
Fix typos
1 parent c4515af commit e6fdae0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

notebooks/beginner/debugging.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@
2828
"* `h` or `help`: Prints a list of available commands. If you give an argument, e.g. `help continue`, prints help of the `continue` command.\n",
2929
"* `l` or `list`: List a piece of code around the current position.\n",
3030
"* `n` or `next`: Execute next line.\n",
31-
"* `s` or `step`: Same as `next` put \"steps into\" the function called in the next line.\n",
31+
"* `s` or `step`: Same as `next` but \"steps into\" the function called in the next line.\n",
3232
"* `c` or `continue`: Continue execution until next breakpoint.\n",
3333
"* `r` or `return`: Continue execution until the return of current function.\n",
34-
"* `q` or `quite`: Quit debugger and abort program execution.\n",
34+
"* `q` or `quit`: Quit debugger and abort program execution.\n",
3535
"\n",
3636
"Note that you can see the value of any variable by typing the variable name during the debugging session. You can also execute arbitrary code during the debugging session."
3737
]

notebooks/beginner/html/debugging.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11777,7 +11777,7 @@
1177711777
}
1177811778

1177911779
$( document ).ready(function(){
11780-
show=false;
11780+
show=false;
1178111781
$('div.output').hide()
1178211782
});
1178311783
</script>
@@ -11823,10 +11823,10 @@ <h2 id="Useful-commands">Useful commands<a class="anchor-link" href="#Useful-com
1182311823
<li><code>h</code> or <code>help</code>: Prints a list of available commands. If you give an argument, e.g. <code>help continue</code>, prints help of the <code>continue</code> command.</li>
1182411824
<li><code>l</code> or <code>list</code>: List a piece of code around the current position.</li>
1182511825
<li><code>n</code> or <code>next</code>: Execute next line.</li>
11826-
<li><code>s</code> or <code>step</code>: Same as <code>next</code> put "steps into" the function called in the next line.</li>
11826+
<li><code>s</code> or <code>step</code>: Same as <code>next</code> but "steps into" the function called in the next line.</li>
1182711827
<li><code>c</code> or <code>continue</code>: Continue execution until next breakpoint.</li>
1182811828
<li><code>r</code> or <code>return</code>: Continue execution until the return of current function.</li>
11829-
<li><code>q</code> or <code>quite</code>: Quit debugger and abort program execution.</li>
11829+
<li><code>q</code> or <code>quit</code>: Quit debugger and abort program execution.</li>
1183011830
</ul>
1183111831
<p>Note that you can see the value of any variable by typing the variable name during the debugging session. You can also execute arbitrary code during the debugging session.</p>
1183211832

0 commit comments

Comments
 (0)