Skip to content

Commit 0998fce

Browse files
authored
Removed extra "and" in a sentence (#1537)
Removed extra "and" in a sentence
2 parents 23778ed + 00bacf6 commit 0998fce

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ There are buttons for it at the top of the right panel. Let's engage them.
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`.
138138
: 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.
139139

140-
The "Step" command goes into it and and pauses the execution at its first line, while "Step over" executes the nested function call invisibly, skipping the function internals.
140+
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

142142
The execution is then paused immediately after that function.
143143

0 commit comments

Comments
 (0)