Skip to content

Commit 3b7d493

Browse files
committed
closes #2421
1 parent 32518b7 commit 3b7d493

File tree

1 file changed

+1
-1
lines changed
  • 1-js/03-code-quality/01-debugging-chrome

1 file changed

+1
-1
lines changed

1-js/03-code-quality/01-debugging-chrome/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ There are buttons for it at the top of the right panel. Let's engage them.
135135
Clicking this again and again will step through all script statements one by one.
136136

137137
<span class="devtools" style="background-position:-62px -192px"></span> -- "Step over": run the next command, but *don't go into a function*, hotkey `key:F10`.
138-
: Similar to the previous the "Step" command, but behaves differently if the next statement is a function call. That is: not a built-in, like `alert`, but a function of our own.
138+
: Similar to the previous "Step" command, but behaves differently if the next statement is a function call. That is: not a built-in, like `alert`, but a function of our own.
139139

140140
The "Step" command goes into it and pauses the execution at its first line, while "Step over" executes the nested function call invisibly, skipping the function internals.
141141

0 commit comments

Comments
 (0)