Skip to content

Commit 108a735

Browse files
authored
Fix minor grammatical error (mdn#8757)
1 parent 4010bd5 commit 108a735

File tree

1 file changed

+1
-1
lines changed
  • files/en-us/learn/javascript/asynchronous/concepts

1 file changed

+1
-1
lines changed

files/en-us/learn/javascript/asynchronous/concepts/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ <h2 id="Asynchronous_code">Asynchronous code</h2>
129129

130130
<pre>Main thread: Task A --&gt; Task B</pre>
131131

132-
<p>In this case, let's say Task A is doing something like fetching an image from the server and Task B then does something to the image like applying a filter to it. If you start Task A running and then immediately try to run Task B, you'll get an error, because the image won't be available yet.</p>
132+
<p>In this case, let's say Task A is doing something like fetching an image from the server and Task B then does something to the image like applying a filter to it. If you start running Task A and then immediately try to run Task B, you'll get an error, because the image won't be available yet.</p>
133133

134134
<pre> Main thread: Task A --&gt; Task B --&gt; |Task D|
135135
Worker thread: Task C -----------&gt; | |</pre>

0 commit comments

Comments
 (0)